From 8b2a9204d5565c0b175d49e95fd8747f763d5605 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Fri, 19 Jun 2020 08:03:21 +0100 Subject: [PATCH] gui/dialogs/flight-recorder-save.xml: renamed internal variable for clarity. New name Extra corresponds to the new name used in the C++ code. (Used to be called Config which was misleading and ambiguous.) --- gui/dialogs/flight-recorder-save.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/dialogs/flight-recorder-save.xml b/gui/dialogs/flight-recorder-save.xml index d97be0627..8288d5867 100644 --- a/gui/dialogs/flight-recorder-save.xml +++ b/gui/dialogs/flight-recorder-save.xml @@ -238,11 +238,11 @@ { starttime="";stoptime=""; } - var Config = props.Node.new({ + var Extra = props.Node.new({ "user-data":{ "description": descr, "author-name": author }, "tape-data": { "quality": quality, "start": starttime, "stop": stoptime } }); - fgcommand("save-tape", Config); + fgcommand("save-tape", Extra);