From 1153c19cb5ae70f470c48821c9b9c6d53d99be14 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 5 Nov 2025 01:39:09 +0100 Subject: [PATCH] Reduce Region editor height requirement .. in preparation for fixed height bottom pane --- gtk2_ardour/region_editor.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/region_editor.cc b/gtk2_ardour/region_editor.cc index 2bd66074c3..7d8cdc6978 100644 --- a/gtk2_ardour/region_editor.cc +++ b/gtk2_ardour/region_editor.cc @@ -223,7 +223,9 @@ RegionEditor::RegionEditor (Session* s, std::shared_ptr r) _table_main.attach (_sources, 1, 3, 1, 2, Gtk::FILL | Gtk::EXPAND, Gtk::SHRINK); _table_main.attach (_table_clocks, 1, 2, 2, 3, Gtk::FILL, Gtk::SHRINK); +#if 0 // no tempo table for now, save precious vertical space _table_main.attach (_table_tempo, 1, 2, 3, 4, Gtk::FILL, Gtk::SHRINK); +#endif /* AudioRegionEditor inserts stuff into _table_main here, row 4 .. 6 */