Remove visible spacer right of the mini-timeline

This improves consistency, the center widgets are already
visibly separated by their background.
This commit is contained in:
Robin Gareus 2022-10-18 02:14:31 +02:00
parent 3a98d6133c
commit 54a98cd320
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 3 additions and 2 deletions

View file

@ -562,7 +562,7 @@ private:
ArdourWidgets::ArdourVSpacer meterbox_spacer;
ArdourWidgets::ArdourVSpacer meterbox_spacer2;
Gtk::HBox meterbox_spacer2;
ArdourWidgets::ArdourButton auto_return_button;
ArdourWidgets::ArdourButton follow_edits_button;

View file

@ -228,7 +228,8 @@ ARDOUR_UI::repack_transport_hbox ()
if (UIConfiguration::instance().get_show_editor_meter()) {
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);
transport_hbox.pack_end (meterbox_spacer2, false, false, 1);
meterbox_spacer2.set_size_request (1, -1);
editor_meter_table.show();
meterbox_spacer.show();
meterbox_spacer2.show();