More fixes

This commit is contained in:
Marco Pesenti Gritti
2006-09-08 10:38:45 +02:00
parent d2ca088057
commit 10f3c1bc92
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -63,8 +63,8 @@ class GridLayout:
def layout_screen(self, screen):
for window in screen.get_windows():
[x, y, width, height] = self._get_geometry(screen, window)
window.move(x, y)
window.resize(width, height)
window.move(int(x), int(y))
window.resize(int(width), int(height))
class GridGroup(goocanvas.Group):
__gproperties__ = {