From 1c707c7a7ea27a6cd63bb27370e56ccb9bc32469 Mon Sep 17 00:00:00 2001 From: John Tapsell Date: Wed, 30 Nov 2011 13:58:49 +0000 Subject: [PATCH] Make the send textbox in the GUI expand properly --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index b718aa3..08b1083 100755 --- a/pronterface.py +++ b/pronterface.py @@ -497,7 +497,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole): self.commandbox=wx.TextCtrl(self.panel,style = wx.TE_PROCESS_ENTER) self.commandbox.Bind(wx.EVT_TEXT_ENTER,self.sendline) #self.printerControls.append(self.commandbox) - lbrs.Add(self.commandbox,0) + lbrs.Add(self.commandbox,1) self.sendbtn=wx.Button(self.panel,-1,_("Send")) self.sendbtn.Bind(wx.EVT_BUTTON,self.sendline) #self.printerControls.append(self.sendbtn)