From 0496701a8fa2353690d0c2c10ff58be9756232c8 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 25 Jan 2022 19:50:45 -0600 Subject: [PATCH] Simplify the tab-selector tooltips --- gtk2_ardour/ardour_ui2.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc index d65d7ba796..44b3bcb278 100644 --- a/gtk2_ardour/ardour_ui2.cc +++ b/gtk2_ardour/ardour_ui2.cc @@ -420,24 +420,24 @@ ARDOUR_UI::setup_transport () /* and tooltips */ Gtkmm2ext::UI::instance()->set_tip (editor_visibility_button, - string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n" - "To re-attach the window, use the Window > %1 > Attach menu action"), editor->name())); + string_compose (_("Left-Click to show the %1 window\n" + "Right-click to show more options"), editor->name())); Gtkmm2ext::UI::instance()->set_tip (mixer_visibility_button, - string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n" - "To re-attach the window, use the Window > %1 > Attach menu action"), mixer->name())); + string_compose (_("Left-Click to show the %1 window\n" + "Right-click to show more options"), mixer->name())); Gtkmm2ext::UI::instance()->set_tip (prefs_visibility_button, - string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n" - "To re-attach the window, use the Window > %1 > Attach menu action"), rc_option_editor->name())); + string_compose (_("Left-Click to show the %1 window\n" + "Right-click to show more options"), rc_option_editor->name())); Gtkmm2ext::UI::instance()->set_tip (recorder_visibility_button, - string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n" - "To re-attach the window, use the Window > %1 > Attach menu action"), recorder->name())); + string_compose (_("Left-Click to show the %1 window\n" + "Right-click to show more options"), recorder->name())); Gtkmm2ext::UI::instance()->set_tip (trigger_page_visibility_button, - string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n" - "To re-attach the window, use the Window > %1 > Attach menu action"), trigger_page->name())); + string_compose (_("Left-Click to show the %1 window\n" + "Right-click to show more options"), trigger_page->name())); Gtkmm2ext::UI::instance()->set_tip (punch_in_button, _("Start recording at auto-punch start")); Gtkmm2ext::UI::instance()->set_tip (punch_out_button, _("Stop recording at auto-punch end"));