From df577d79d4bb36562089db83fd09082fc27cb62b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 23 Feb 2023 22:52:41 +0100 Subject: [PATCH] Clarify scale-slider, label is not the current value --- gtk2_ardour/rc_option_editor.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index dc783d7b66..e7254cdefd 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1114,6 +1114,7 @@ class FontScalingOptions : public HSliderOption 1024, false) { const std::string dflt = _("100%"); + const std::string dbl = _("200%"); const std::string empty = X_(""); // despite gtk-doc saying so, NULL does not work as reference _hscale.set_name("FontScaleSlider"); @@ -1127,7 +1128,7 @@ class FontScalingOptions : public HSliderOption _hscale.add_mark(125, Gtk::POS_TOP, empty); _hscale.add_mark(150, Gtk::POS_TOP, empty); _hscale.add_mark(175, Gtk::POS_TOP, empty); - _hscale.add_mark(200, Gtk::POS_TOP, empty); + _hscale.add_mark(200, Gtk::POS_TOP, dbl); _hscale.add_mark(250, Gtk::POS_TOP, empty); set_note (_("Adjusting the scale requires an application restart for fully accurate re-layout."));