mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
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:
parent
3a98d6133c
commit
54a98cd320
2 changed files with 3 additions and 2 deletions
|
|
@ -562,7 +562,7 @@ private:
|
||||||
|
|
||||||
|
|
||||||
ArdourWidgets::ArdourVSpacer meterbox_spacer;
|
ArdourWidgets::ArdourVSpacer meterbox_spacer;
|
||||||
ArdourWidgets::ArdourVSpacer meterbox_spacer2;
|
Gtk::HBox meterbox_spacer2;
|
||||||
|
|
||||||
ArdourWidgets::ArdourButton auto_return_button;
|
ArdourWidgets::ArdourButton auto_return_button;
|
||||||
ArdourWidgets::ArdourButton follow_edits_button;
|
ArdourWidgets::ArdourButton follow_edits_button;
|
||||||
|
|
|
||||||
|
|
@ -228,7 +228,8 @@ ARDOUR_UI::repack_transport_hbox ()
|
||||||
if (UIConfiguration::instance().get_show_editor_meter()) {
|
if (UIConfiguration::instance().get_show_editor_meter()) {
|
||||||
transport_hbox.pack_end (meterbox_spacer, false, false, 3);
|
transport_hbox.pack_end (meterbox_spacer, false, false, 3);
|
||||||
transport_hbox.pack_end (editor_meter_table, false, false);
|
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();
|
editor_meter_table.show();
|
||||||
meterbox_spacer.show();
|
meterbox_spacer.show();
|
||||||
meterbox_spacer2.show();
|
meterbox_spacer2.show();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue