From b093ce9da797714c6ed1666750c471e6d0f63a0e Mon Sep 17 00:00:00 2001 From: Dimitur Kirov Date: Fri, 26 Aug 2005 13:23:26 +0000 Subject: [PATCH] roster postion is saved when roster window is not visible --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 570d2c8f5..b2765eb0a 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1520,7 +1520,7 @@ _('If "%s" accepts this request you will know his status.') %jid) '''When we quit the gtk plugin : tell that to the core and exit gtk''' if gajim.config.get('saveposition'): - x, y = self.window.get_position() + x, y = self.window.window.get_root_origin() gajim.config.set('roster_x-position', x) gajim.config.set('roster_y-position', y) width, height = self.window.get_size()