From 7aeead630aa9e293a0115ae448388acc3eeb87a8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 5 Aug 2015 19:51:58 +0200 Subject: adjust click box size - fixes #6499 --- libs/gtkmm2ext/click_box.cc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/libs/gtkmm2ext/click_box.cc b/libs/gtkmm2ext/click_box.cc index 383fa6e583..7b2e67d8ab 100644 --- a/libs/gtkmm2ext/click_box.cc +++ b/libs/gtkmm2ext/click_box.cc @@ -88,6 +88,7 @@ void ClickBox::set_label () { char buf[32]; + int width, height; bool const h = _printer (buf, get_adjustment()); if (!h) { @@ -96,7 +97,17 @@ ClickBox::set_label () } layout->set_text (buf); - layout->get_pixel_size (twidth, theight); + layout->get_pixel_size (width, height); + + if (twidth < width && (width > 50)) { + /* override GenericPluginUI::build_control_ui() + * Gtkmm2ext::set_size_request_to_display_given_text ("g9999999") + * see http://tracker.ardour.org/view.php?id=6499 + */ + set_size_request (std::min (300, width + 6), height + 4); + } + + twidth = width; theight = height; queue_draw (); } -- cgit v1.2.3