Fix ALL dropdowns on Windows

master
kliment 2011-06-09 19:21:13 +02:00
parent c5e6fe2283
commit 220ce936c8
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
scan=self.scanserial()
self.serialport = wx.ComboBox(self.panel, -1,
choices=scan,
style=wx.CB_SIMPLE|wx.CB_DROPDOWN|wx.CB_SORT, pos=(50,0))
style=wx.CB_DROPDOWN|wx.CB_SORT, pos=(50,0))
try:
self.serialport.SetValue(scan[0])
except: