From 5ee2c918641e4cc7b7a5ba9be10eebeb06675913 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 23 Sep 2021 11:48:20 -0600 Subject: [PATCH] triggerui: return to normal packing --- gtk2_ardour/trigger_ui.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/trigger_ui.cc b/gtk2_ardour/trigger_ui.cc index 59b476a21f..fdbe42bbdf 100644 --- a/gtk2_ardour/trigger_ui.cc +++ b/gtk2_ardour/trigger_ui.cc @@ -107,7 +107,7 @@ TriggerUI::TriggerUI (Item* parent, Trigger& t) const Distance spacing = 12. * scale; attach (follow_action_button, 0, 0, 2, 1, PackExpand, PackExpand, { 10 }); - attach (follow_left, 0, 1, 1, 2, PackExpand, PackExpand, { 10 }); + attach (follow_left, 0, 1, 1, 2, PackExpand, PackExpand, { 10 }); attach (follow_right, 1, 1, 2, 2, PackExpand, PackExpand, { 10 }); set_fill_color (UIConfiguration::instance().color (X_("theme:bg"))); @@ -181,6 +181,7 @@ TriggerWindow::TriggerWindow (Trigger& t) tw->show (); tw->size_request (w, h); set_default_size (w, h); + std::cerr << "TW: set default win size to " << w << " x " << h << std::endl; add (*tw); }