From 0878894c59578c67b4bf7ba4a63d4adfb052d654 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 14 Sep 2021 21:38:48 -0600 Subject: [PATCH] triggerbox: set bg color for packing table in trigger UI --- gtk2_ardour/trigger_ui.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/trigger_ui.cc b/gtk2_ardour/trigger_ui.cc index 5e47a342c8..59b476a21f 100644 --- a/gtk2_ardour/trigger_ui.cc +++ b/gtk2_ardour/trigger_ui.cc @@ -110,6 +110,9 @@ TriggerUI::TriggerUI (Item* parent, Trigger& t) 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"))); + name = "triggerUI-table"; + trigger_changed (); }