From e505874effd968d77d9675a6dcfa63ce1c3b1e35 Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Tue, 4 Mar 2008 18:57:50 +0100 Subject: Fixed small bug with right click --- portato/gui/gtk/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 5b6c621..ff8dc90 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -1782,7 +1782,7 @@ class MainWindow (Window): pthinfo = object.get_path_at_pos(x, y) if pthinfo is not None: path, col, cellx, celly = pthinfo - it = self.queueList.get_iter(path) + it = self.queueList.get_model().get_iter(path) if self.queueTree.is_in_emerge(it) and self.queueTree.iter_has_parent(it): object.grab_focus() object.set_cursor(path, col, 0) -- cgit v1.2.3-54-g00ecf