Use signal_selection_changed() for 'folder' file choosers instead of signal_current_folder_changed()

This commit is contained in:
heckflosse
2017-05-15 20:50:53 +02:00
parent 3999bf179e
commit 27eae3474d
2 changed files with 2 additions and 3 deletions

View File

@@ -102,7 +102,6 @@ BatchQueuePanel::BatchQueuePanel (FileCatalog* aFileCatalog)
#else
outdirFolder = Gtk::manage (new MyFileChooserButton (M("PREFERENCES_OUTDIRFOLDER"), Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER));
hb3->pack_start (*outdirFolder);
outdirFolder->signal_current_folder_changed().connect (sigc::mem_fun(*this, &BatchQueuePanel::pathFolderChanged));
outdirFolder->signal_selection_changed().connect (sigc::mem_fun(*this, &BatchQueuePanel::pathFolderChanged));
outdirFolder->set_tooltip_markup (M("PREFERENCES_OUTDIRFOLDERHINT"));