Multiple selections when clicking on conversation list: Closes #6138

This commit is contained in:
Avi Levy 2013-08-29 15:59:07 -07:00 committed by Jim Nelson
parent a0a20c813f
commit 59df8a4b47

View file

@ -231,7 +231,8 @@ public class ConversationListView : Gtk.TreeView {
context_menu.show_all();
context_menu.popup(null, null, null, event.button, event.time);
return false;
// When the conversation under the mouse is selected, stop event propagation
return get_selection().path_is_selected(path);
}
return false;