From: Robin Gareus Date: Mon, 23 Mar 2015 14:36:15 +0000 (+0100) Subject: work around gtk filechooser bug. X-Git-Tag: 4.0-rc1~112 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=65731eaa5c8ed54e98c464c934ad512cca37d017;p=ardour.git work around gtk filechooser bug. --- diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc index 4410410ef8..f559e3d90c 100644 --- a/gtk2_ardour/startup.cc +++ b/gtk2_ardour/startup.cc @@ -397,6 +397,14 @@ ArdourStartup::on_delete_event (GdkEventAny*) void ArdourStartup::on_apply () { + /* file-chooser button does not emit 'current_folder_changed' signal + * when a folder from the dropdown or the sidebar is chosen. + * -> explicitly poll for the dir as suggested by the gtk documentation. + */ + if (default_dir_chooser && default_dir_chooser->get_filename() != Config->get_default_session_parent_dir ()) { + config_modified = true; + } + if (config_modified) { if (default_dir_chooser) { @@ -433,6 +441,3 @@ ArdourStartup::move_along_now () { on_apply (); } - - -