summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-03-07 13:30:24 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2019-03-07 13:30:24 -0700
commit10bc82403285a1c6f1f6f8dfead66e530d5125b7 (patch)
tree4680051e04ae3a193e0be0838e7ad0885c906c98 /gtk2_ardour/rc_option_editor.cc
parentd301bef742a4e5cf854a4117507048cdc31e70bf (diff)
selection must be enabled to allow editable columns :((
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index 2e801bffe5..30294fc4a8 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -1987,7 +1987,7 @@ MidiPortOptions::setup_midi_port_view (Gtk::TreeView& view, bool with_selection)
toggle_cell->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &MidiPortOptions::midi_selection_column_toggled), &view));
}
- view.get_selection()->set_mode (SELECTION_NONE);
+ view.get_selection()->set_mode (SELECTION_SINGLE);
view.set_tooltip_column (4); /* port "real" name */
view.get_column(0)->set_resizable (true);
view.get_column(0)->set_expand (true);