From 764dd20f937c3b0dc80a9824d31c6a0ef2eeca2d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 19 Jul 2020 23:10:43 -0600 Subject: [PATCH] Editor: allow name and path column in editor source list to be manually resizable --- gtk2_ardour/editor_sources.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk2_ardour/editor_sources.cc b/gtk2_ardour/editor_sources.cc index e77d4c1a8a..5b33876283 100644 --- a/gtk2_ardour/editor_sources.cc +++ b/gtk2_ardour/editor_sources.cc @@ -146,6 +146,11 @@ EditorSources::EditorSources (Editor* e) { -1, 0, 0 } }; + /* make Name and Path columns manually resizable */ + + _display.get_column (0)->set_resizable (true); + _display.get_column (4)->set_resizable (true); + for (int i = 0; ci[i].index >= 0; ++i) { col = _display.get_column (ci[i].index); l = manage (new Label (ci[i].label));