summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-06-13 17:12:36 +1000
committerTim Mayberry <mojofunk@gmail.com>2015-01-02 22:11:47 +0700
commit6bb82bfd305e4527d328995b4f3bb5872e117447 (patch)
tree6a153f2791d531d105e1f770118b33ab6cd73acf /gtk2_ardour/rc_option_editor.cc
parent02a7bbce7685caa32712aaacd7aeb1092cce0395 (diff)
Fix Audiofile browser dialog so it appears infront of preference window when selecting click file
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc3
1 files changed, 3 insertions, 0 deletions
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());
}