summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_format_selector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-11-21 23:21:13 +0100
committerRobin Gareus <robin@gareus.org>2018-11-21 23:21:13 +0100
commit555dcd11fd3c25282e0c16f99efdddc42d824ed4 (patch)
treeeefa620a5fbf1c3df79180c439720aa860282e74 /gtk2_ardour/export_format_selector.cc
parent9326ced760315986fbce617bece607d75985e027 (diff)
Properly revert FormatSpec changes on "cancel"
Previously the ExportFormatDialog saved changes to disk on "save" but did nothing on "cancel". The format changed *remained* modified in memory, just not saved (until the ExportProfileManager is re-instantiated)
Diffstat (limited to 'gtk2_ardour/export_format_selector.cc')
-rw-r--r--gtk2_ardour/export_format_selector.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc
index dbc74908d1..cf973b86b3 100644
--- a/gtk2_ardour/export_format_selector.cc
+++ b/gtk2_ardour/export_format_selector.cc
@@ -159,6 +159,9 @@ ExportFormatSelector::open_edit_dialog (bool new_dialog)
update_format_description ();
FormatEdited (state->format);
CriticalSelectionChanged();
+ } else {
+ FormatReverted (state->format);
+ CriticalSelectionChanged();
}
return response;
}