Fix Audiofile browser dialog so it appears infront of preference window when selecting click file

This commit is contained in:
Tim Mayberry 2014-06-13 17:12:36 +10:00
parent 02a7bbce76
commit 6bb82bfd30

View File

@ -115,6 +115,9 @@ private:
{
SoundFileChooser sfdb (_("Choose Click"));
sfdb.show_all ();
sfdb.present ();
if (sfdb.run () == RESPONSE_OK) {
click_chosen (sfdb.get_filename());
}