From 258b95834f447efa9997f0e5e9e559562c6a96f6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 27 Mar 2019 23:24:58 +0100 Subject: [PATCH] Re-layout ctrl surface enable button: align left Since the Preferences window can be rather wide, and the table expands, a button on the left is preferred. --- gtk2_ardour/rc_option_editor.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 756252f348..6552b65077 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1329,10 +1329,10 @@ class ControlSurfacesOptions : public OptionEditorMiniPage { _store = ListStore::create (_model); _view.set_model (_store); - _view.append_column (_("Control Surface Protocol"), _model.name); - _view.get_column(0)->set_resizable (true); - _view.get_column(0)->set_expand (true); _view.append_column_editable (_("Enable"), _model.enabled); + _view.append_column (_("Control Surface Protocol"), _model.name); + _view.get_column(1)->set_resizable (true); + _view.get_column(1)->set_expand (true); Gtk::HBox* edit_box = manage (new Gtk::HBox); edit_box->set_spacing(3);