From 188edf560a2bddd3b740a8f1999e9d84f4a6ae56 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 8 Sep 2006 11:35:28 +0200 Subject: [PATCH] Correct buddies placement --- shell/frame/RightPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/frame/RightPanel.py b/shell/frame/RightPanel.py index 18bf6d40..3c362d24 100644 --- a/shell/frame/RightPanel.py +++ b/shell/frame/RightPanel.py @@ -27,7 +27,7 @@ class RightPanel(GridGroup): color=IconColor(buddy.get_color())) icon.connect('clicked', self.__buddy_clicked_cb, buddy) - row = self.get_n_children() + 2 + row = self.get_n_children() constraints = GridConstraints(0, row , 1, 1, 6) self._layout.set_constraints(icon, constraints)