Hi,
I have noticed a problem with the wxSingleChoiceDialog.
When the number of elements in the list increases up to
a few thousands, the vertical scrollbar always cover the
whole side of the listbox thereby making it impossible
to select elements further down the list.
I am using wxPython-2.2.1 in Linux and my version of GTK+
is 1.2.8. I have enclosed a small code example that shows
this problem.
Regards
//Jan Persson
--- cut here --------------------------------------------
from wxPython.wx import *
def runTest():
dlg = wxSingleChoiceDialog(None, 'Test Single Choice', 'The Caption',
['zero', 'one', 'two', 'three', 'four', 'five',
'six', 'seven', 'eight']*500)
dlg.ShowModal()
class MyApp(wxApp):
def OnInit(self):
runTest()
return 1
def main():
app = MyApp(0)
app.MainLoop()
main()
···
=====
+--------------------------------------------------------+
Jan Persson (Consultant & Python Evangelist) |
+--------------------------------------------------------+
Email: Syren Software Engineering: |
jpersson1@yahoo.com http://www.syrensoftware.se |
http://www.python.org |
+--------------------------------------------------------+
__________________________________________________
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
_______________________________________________
wxPython-users mailing list
wxPython-users@lists.sourceforge.net
http://lists.sourceforge.net/mailman/listinfo/wxpython-users