mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 21:27:22 +01:00
Added comment explaining new Gtk::Dialog idiom.
git-svn-id: svn://localhost/trunk/ardour2@148 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
944ff941bc
commit
7886d3232c
1 changed files with 14 additions and 7 deletions
|
|
@ -333,13 +333,20 @@ ARDOUR_UI::route_params_hiding ()
|
|||
void
|
||||
ARDOUR_UI::toggle_sound_file_browser ()
|
||||
{
|
||||
// GTK2FIX
|
||||
// if (sfdb_check->get_active()) {
|
||||
// SoundFileBrowser sfdb(_("Sound File Browser"));
|
||||
/* This is called from the check menu item. If checked on, open
|
||||
* a new SoundFileBrowser, and connect it's quit method to the
|
||||
* check menu item so if it is toggled off, it exits. If it exits
|
||||
* by itself, set the check menu item to false.
|
||||
* If this is called by checking off, don't do anything, the signals
|
||||
* should handle everything. I expect this idiom to be useful for
|
||||
* other Gtk::Dialog's as well. --Taybin */
|
||||
|
||||
// sfdb_check->signal_toggled().connect (bind (mem_fun (sfdb, &Gtk::Dialog::response), Gtk::RESPONSE_CANCEL));
|
||||
// sfdb.run();
|
||||
// sfdb_check->set_active(false);
|
||||
// }
|
||||
//GTK2FIX
|
||||
//if (sfdb_check->get_active()) {
|
||||
//SoundFileBrowser sfdb(_("Sound File Browser"));
|
||||
//sfdb_check->signal_toggled().connect (bind (mem_fun (sfdb, &Gtk::Dialog::response), Gtk::RESPONSE_CANCEL));
|
||||
//sfdb.run();
|
||||
//sfdb_check->set_active(false);
|
||||
//}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue