mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fixed sizing of Genesis game to eliminate potential overlap.
This commit is contained in:
parent
795b1bc49c
commit
1d290d1ed1
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ class Genesis(Game):
|
|||
l, s = Layout(self), self.s
|
||||
|
||||
# set window
|
||||
w, h = l.XM+rows*l.XS, l.YM+2*l.YS+20*l.YOFFSET
|
||||
w, h = l.XM + rows * l.XS, l.YM + (3 * l.YS) + (15 * l.YOFFSET)
|
||||
self.setSize(w, h)
|
||||
|
||||
# create stacks
|
||||
|
|
Loading…
Add table
Reference in a new issue