summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-02-14 15:05:49 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-02-14 15:05:49 -0600
commit7127fa2c9b2cb8e5409052fa3698fabe9b3070ba (patch)
tree72fc8942bcf348ae143b7a21089c02ea74ecb766 /gtk2_ardour/ardour_ui2.cc
parentc206fa98a1be56678b05bbc728602a859686591b (diff)
If the gauges arent clickable, perhaps they look best with hard edges, matching the master-bus meters in the toolbar.
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index 71d4af10b8..7de82f685e 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -217,13 +217,16 @@ ARDOUR_UI::repack_transport_hbox ()
}
if (meterbox_spacer.get_parent()) {
transport_hbox.remove (meterbox_spacer);
+ transport_hbox.remove (meterbox_spacer2);
}
if (UIConfiguration::instance().get_show_editor_meter()) {
- transport_hbox.pack_end (editor_meter_table, false, false);
transport_hbox.pack_end (meterbox_spacer, false, false, 3);
+ transport_hbox.pack_end (editor_meter_table, false, false);
+ transport_hbox.pack_end (meterbox_spacer2, false, false, 3);
editor_meter_table.show();
meterbox_spacer.show();
+ meterbox_spacer2.show();
}
}