From 46e479038def8fe37be9590636d30ef80067bc99 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 28 Dec 2015 17:03:40 +0100 Subject: plugin-sidebar: select on right-click (before context-menu) --- gtk2_ardour/mixer_ui.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 51659b55e1..d4c37c84f8 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -2371,6 +2371,16 @@ bool Mixer_UI::plugin_row_button_press (GdkEventButton *ev) { if ((ev->type == GDK_BUTTON_PRESS) && (ev->button == 3) ) { + TreeModel::Path path; + TreeViewColumn* column; + int cellx, celly; + if (favorite_plugins_display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly)) { + Glib::RefPtr selection = favorite_plugins_display.get_selection(); + if (selection) { + selection->unselect_all(); + selection->select(path); + } + } popup_note_context_menu (ev); } return false; -- cgit v1.2.3