summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-03-08 12:15:42 +0100
committerRobin Gareus <robin@gareus.org>2017-03-08 13:03:46 +0100
commita3a61c9c7430ee7fc08e8aaaa13d37cc9c3406d0 (patch)
treef322dfce43d55c8461f6f3953e5ea49914fb197c /gtk2_ardour/rc_option_editor.cc
parent819d9fa3cd2421bbf6918e456f443cfe86f635de (diff)
Pop down dialog before re-scanning VSTs
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index b2f65fdc2e..5af921c9c7 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -3987,6 +3987,7 @@ void RCOptionEditor::edit_lxvst_path () {
false /*no markup*/, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO, true /*modal*/);
msg.set_default_response (Gtk::RESPONSE_YES);
if (msg.run() == Gtk::RESPONSE_YES) {
+ msg.hide ();
plugin_scan_refresh ();
}
}
@@ -4007,6 +4008,7 @@ void RCOptionEditor::edit_vst_path () {
false /*no markup*/, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO, true /*modal*/);
msg.set_default_response (Gtk::RESPONSE_YES);
if (msg.run() == Gtk::RESPONSE_YES) {
+ msg.hide ();
plugin_scan_refresh ();
}
}