From 56605c48da9be195ebba37476bde4d14d3195c3d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 14 Dec 2021 21:09:00 +0100 Subject: [PATCH] Prevent editor to grow vertically > 1080px (temp. workaround) This will require some overhaul and re-layout of the selection sidebar. --- gtk2_ardour/editor.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 9e951c622c..d259b8ad21 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -668,7 +668,11 @@ Editor::Editor () Location::end_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); Location::changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); +#if 0 add_notebook_page (_("Selection"), *_properties_box); +#else +#warning @Ben Fix Properties Sidebar Layout to fit < 720px height +#endif add_notebook_page (_("Tracks & Busses"), _routes->widget ()); add_notebook_page (_("Sources"), _sources->widget ()); add_notebook_page (_("Regions"), _regions->widget ());