summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-27 23:24:58 +0100
committerRobin Gareus <robin@gareus.org>2019-03-27 23:25:28 +0100
commit258b95834f447efa9997f0e5e9e559562c6a96f6 (patch)
treee058c9498390ae1dfa976f95be3d3dd3cf28abcd /gtk2_ardour/rc_option_editor.cc
parent0ee6b03144f7f40792aced150ddf6971659fb171 (diff)
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.
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc6
1 files 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);