Don't expand GUI as much on first load

The editor-toolbar still needs a major cleanup, it's
very busy
This commit is contained in:
Robin Gareus 2025-08-19 15:25:24 +02:00
parent 44ceb91e52
commit 8ffd45c3c0
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 9 additions and 1 deletions

View file

@ -169,6 +169,8 @@ EditingContext::EditingContext (std::string const & name)
}
}
grid_box.set_no_show_all ();
if (grid_type_strings.empty()) {
grid_type_strings = I18N (_grid_type_strings);
}
@ -2199,6 +2201,9 @@ EditingContext::pack_draw_box (bool with_channel)
draw_velocity_selector.disable_scrolling ();
draw_velocity_selector.signal_scroll_event().connect (sigc::mem_fun(*this, &EditingContext::on_velocity_scroll_event), false);
draw_box.show_all_children ();
draw_box.set_no_show_all ();
}
void

View file

@ -2805,6 +2805,7 @@ Editor::setup_toolbar ()
grid_box.set_spacing (2);
grid_box.set_border_width (spc);
grid_box.pack_start (stretch_marker_cb, false, false, 4);
stretch_marker_cb.show ();
grid_type_selector.set_name ("mouse mode button");
@ -2854,10 +2855,12 @@ Editor::setup_toolbar ()
toolbar_hbox.pack_end (*(manage (new ArdourVSpacer ())), false, false, 3);
toolbar_hbox.pack_end (*follow_mode_hbox, false, false);
_draw_box_spacer.set_no_show_all ();
_grid_box_spacer.set_no_show_all ();
toolbar_hbox.show_all ();
}
void
Editor::build_edit_point_menu ()
{