From a8e05a50e492c4cc815801be2008cfec97a56986 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Sat, 19 Nov 2016 13:51:32 +1000 Subject: [PATCH] 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. --- gtk2_ardour/rc_option_editor.cc | 2 ++ 1 file changed, 2 insertions(+) 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"); -- 2.30.2