Closed GoogleCodeExporter closed 9 years ago
Hm, I'm not able to reproduce it, but I certanly believe it might happen often
on
faster systems.
Perhaps you can try to change the .realize() call in line 158 to .map()
If that doesn't work either, can you try to change:
widgets["enterGameNotationSidePanel"].realize()
widgets["enterGameNotationFrame"].set_size_request(223,
widgets["enterGameNotationSidePanel"].get_allocation().height-4)
to:
def callback (widget):
widgets["enterGameNotationFrame"].set_size_request(223,
widget.get_allocation().height-4)
widgets["enterGameNotationSidePanel"].connect_after("realize", callback)
Original comment by lobais
on 16 Nov 2007 at 9:29
I can't reproduce this bug again, so i close it.
Original comment by gbtami
on 17 Nov 2007 at 7:53
A way to reproduce:
1) Start PyChess
2) Open a file (tested with Ctrl+O and a pgn)
3) Open the Enter game notation dialog
I can reproduce this every time. Haven't tried the fix from comment 1 though.
Original comment by lobais
on 3 Jan 2008 at 3:13
Fixed in 831.
Like comment 2, only using the size-allocate signal.
Original comment by lobais
on 4 Jan 2008 at 11:37
Original issue reported on code.google.com by
gbtami
on 1 Nov 2007 at 3:17Attachments: