From 3d08436499bfd84ea6cc7d997a033e6c276681dc Mon Sep 17 00:00:00 2001 From: Duane Johnson Date: Sat, 12 Nov 2011 07:49:21 -0600 Subject: [PATCH] Remove alphabetic sort order from baud rate combo box --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index 27d05df..442cfe4 100755 --- a/pronterface.py +++ b/pronterface.py @@ -380,7 +380,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole): uts.Add(wx.StaticText(self.panel,-1,"@",pos=(250,5)),wx.RIGHT,5) self.baud = wx.ComboBox(self.panel, -1, choices=["2400", "9600", "19200", "38400", "57600", "115200", "250000"], - style=wx.CB_DROPDOWN|wx.CB_SORT|wx.CB_READONLY, size=(110,30),pos=(275,0)) + style=wx.CB_DROPDOWN|wx.CB_READONLY, size=(110,30),pos=(275,0)) try: self.baud.SetValue("115200") self.baud.SetValue(str(self.settings.baudrate))