From 5eba2c92edaf680ff06efdd9956be622fe8d0e50 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Jun 2019 18:30:38 -0600 Subject: [PATCH] width of sliders in the option editor is now a fixed text-relative width --- gtk2_ardour/option_editor.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc index 9cf4920121..e76be3b7b1 100644 --- a/gtk2_ardour/option_editor.cc +++ b/gtk2_ardour/option_editor.cc @@ -383,6 +383,13 @@ HSliderOption::HSliderOption ( _adj.set_value (_get()); _adj.signal_value_changed().connect (sigc::mem_fun (*this, &HSliderOption::changed)); _hscale.set_update_policy (Gtk::UPDATE_DISCONTINUOUS); + + /* make the slider be a fixed, font-relative width */ + + _hscale.ensure_style (); + int width, height; + get_pixel_size (_hscale.create_pango_layout (X_("a long piece of text that is about as wide as we want sliders to be")), width, height); + _hscale.set_size_request (width, -1); } void