summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/click_box.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gtkmm2ext/click_box.cc')
-rw-r--r--libs/gtkmm2ext/click_box.cc13
1 files changed, 12 insertions, 1 deletions
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 ();
}