From 3be59616e87c33e7da072f4ce83b9d47a7e2530b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 21 Dec 2015 15:46:28 +0100 Subject: [PATCH] add tooltip to "floating monitor section" and allow on OSX. --- gtk2_ardour/theme_manager.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc index 9cd36043e1..e1daeabb60 100644 --- a/gtk2_ardour/theme_manager.cc +++ b/gtk2_ardour/theme_manager.cc @@ -115,10 +115,10 @@ ThemeManager::ThemeManager() #ifndef __APPLE__ pack_start (all_dialogs, PACK_SHRINK); pack_start (transients_follow_front, PACK_SHRINK); +#endif if (!Profile->get_mixbus()) { pack_start (floating_monitor_section, PACK_SHRINK); } -#endif pack_start (flat_buttons, PACK_SHRINK); pack_start (blink_rec_button, PACK_SHRINK); pack_start (region_color_button, PACK_SHRINK); @@ -198,6 +198,9 @@ ThemeManager::ThemeManager() Gtkmm2ext::UI::instance()->set_tip (transients_follow_front, string_compose (_("Make transient windows follow the front window when toggling between the editor and mixer.\n" "This requires a restart of %1 to take effect"), PROGRAM_NAME)); + Gtkmm2ext::UI::instance()->set_tip (floating_monitor_section, + string_compose (_("When detaching the monitoring section, mark it as \"Utility\" window to stay in front.\n" + "This requires a restart of %1 to take effect"), PROGRAM_NAME)); set_size_request (-1, 400); /* no need to call setup_palette() here, it will be done when its size is allocated */