From 6bb82bfd305e4527d328995b4f3bb5872e117447 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 13 Jun 2014 17:12:36 +1000 Subject: [PATCH] Fix Audiofile browser dialog so it appears infront of preference window when selecting click file --- gtk2_ardour/rc_option_editor.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index f845273d95..1d58dcf1da 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -115,6 +115,9 @@ private: { SoundFileChooser sfdb (_("Choose Click")); + sfdb.show_all (); + sfdb.present (); + if (sfdb.run () == RESPONSE_OK) { click_chosen (sfdb.get_filename()); }