Ensure w/h > 0

This commit is contained in:
Marco Pesenti Gritti 2006-09-08 02:11:46 +02:00
parent d58936869f
commit 57d1221cd3

View File

@ -37,6 +37,9 @@ class GridLayout:
width = constraints.width * w / self._cols - padding * 2
height = constraints.height * h / self._rows + padding * 2
width = max(0, width)
height = max(0, height)
return [x, y, width, height]
def layout_canvas_group(self, group):