summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-07-23 08:35:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:31:22 -0500
commit90845af8fa89101b53761d6c1843c3d0daa87119 (patch)
tree848d527227142dd180676e3ad815c2eb8f154abf /gtk2_ardour/ardour_ui2.cc
parente2dfc1069885054726e44261cf706c1f24f45635 (diff)
hopefully get dynamic tabbable menu state right this time
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index db0f28a566..059bcb88c8 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -98,9 +98,8 @@ ARDOUR_UI::setup_windows ()
}
rc_option_editor = new RCOptionEditor;
- rc_option_editor->add_to_notebook (_tabs, _("Preferences"));
- rc_option_editor->contents().show_all ();
rc_option_editor->StateChange.connect (sigc::mem_fun (*this, &ARDOUR_UI::tabbable_state_change));
+ rc_option_editor->add_to_notebook (_tabs, _("Preferences"));
/* all other dialogs are created conditionally */
@@ -858,4 +857,5 @@ ARDOUR_UI::update_title ()
WindowTitle title (Glib::get_application_name());
_main_window.set_title (title.get_string());
}
+
}