save fast export options also when clicking on the "fast export" menu item

This commit is contained in:
Alberto Griggio
2017-03-16 09:06:47 +01:00
parent 83c6453b44
commit c8a6253e43

View File

@@ -768,6 +768,12 @@ void FileBrowser::menuItemActivated (Gtk::MenuItem* m)
else if (m == develop) {
tbl->developRequested (mselected, false);
} else if (m == developfast) {
if (exportPanel) {
// force saving export panel settings
exportPanel->setExportPanelListener(nullptr);
exportPanel->FastExportPressed();
exportPanel->setExportPanelListener(this);
}
tbl->developRequested (mselected, true);
}