Fix wrong suffix in SaveAsDialog (#4446)

This commit is contained in:
Flössie
2018-10-06 09:56:42 +02:00
parent ae12a4186c
commit 880afd2cf6
5 changed files with 72 additions and 24 deletions

View File

@@ -363,15 +363,12 @@ void BatchQueuePanel::pathFolderButtonPressed ()
// since these settings are shared with editorpanel :
void BatchQueuePanel::pathFolderChanged ()
{
options.savePathFolder = outdirFolder->get_filename();
}
void BatchQueuePanel::formatChanged (Glib::ustring f)
void BatchQueuePanel::formatChanged(const Glib::ustring& format)
{
options.saveFormatBatch = saveFormatPanel->getFormat ();
options.saveFormatBatch = saveFormatPanel->getFormat();
}
bool BatchQueuePanel::handleShortcutKey (GdkEventKey* event)