mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
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:
parent
44ceb91e52
commit
8ffd45c3c0
2 changed files with 9 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue