Mark Melvin wrote:
I am trying out the new ListButton item on Windows XP (Python 2.5). I have a list of 23 items that I am using to create a ListButton. The problem is, it only seems to ever show me 18 items at once.
Does it let you scroll the list? ListButton on Windows is implemented using a ComboBox control, so it has whatever behaviour you get from that. There are some oddities, for example it seems that the initial height given to the Windows control object determines the maximum height of the drop-down box. Currently, PyGUI picks an arbitrary value for this that seems reasonable; I might provide a way to customise it at some point.
Also, it seems there is another bug in 2.5.1...when I run my GUI from a console, as soon as I click on another window and my app loses focus, it shuts down.
Argh, you're right. Sorry about that, I'll see what I can do to fix it. -- Greg _______________________________________________ Pygui mailing list [email protected] http://mail.python.org/mailman/listinfo/pygui
