From 40d5b2469d036dc7e1899dc61c8e6ab4e1d81591 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Tue, 17 Apr 2012 15:40:24 +0200 Subject: [PATCH] improve the left arrow behaviour in treeview: select parent row when we cannot collapse row --- src/roster_window.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index eefaea5cf8..f3a9530877 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -3441,9 +3441,12 @@ class RosterWindow: return path = list_of_paths[0] iter_ = model.get_iter(path) - if model.iter_has_child(iter_): + if model.iter_has_child(iter_) and self.tree.row_expanded(path): self.tree.collapse_row(path) return True + elif len(path) > 1: + self.tree.set_cursor(path[:-1]) + return True elif event.keyval == gtk.keysyms.Right: treeselection = self.tree.get_selection() model, list_of_paths = treeselection.get_selected_rows() -- GitLab