summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2016-11-19 13:51:32 +1000
committerTim Mayberry <mojofunk@gmail.com>2016-11-19 14:19:11 +1000
commita8e05a50e492c4cc815801be2008cfec97a56986 (patch)
tree49fd0cc2a749af5e7a3b618a2443553704473820 /gtk2_ardour/rc_option_editor.cc
parent0b8a7d34291c665edd4b6251394e4f016118cfbb (diff)
Fix for widget visibility with detached preferences window
Should finally resolve bug #7002 The reason 95e3f766 didn't resolve this is because OptionEditorContainer ctor is called before adding all the widgets in RCOptionEditor so they will still be hidden.
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 0b017926fc..3569d939cc 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -3671,6 +3671,8 @@ if (!ARDOUR::Profile->get_mixbus()) {
add_option (_("Theme/Colors"), new ColorThemeManager);
+ Widget::show_all ();
+
//trigger some parameter-changed messages which affect widget-visibility or -sensitivity
parameter_changed ("send-ltc");
parameter_changed ("sync-source");