From: Youness Alaoui Date: Wed, 12 Aug 2015 17:34:05 +0000 (-0400) Subject: Add a min size of 300px to the toolhead row. X-Git-Tag: lulzbot-15.02.1-2.02~21 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=75b9aef0bd47b221d317ce68ad9d8824b572d096;p=cura.git Add a min size of 300px to the toolhead row. Fixes T181 --- diff --git a/Cura/gui/configBase.py b/Cura/gui/configBase.py index 75eb4efe..effc1a06 100644 --- a/Cura/gui/configBase.py +++ b/Cura/gui/configBase.py @@ -270,6 +270,7 @@ class ToolHeadRow(object): self.label.Bind(wx.EVT_ENTER_WINDOW, self.OnMouseEnter) self.ctrl = wx.TextCtrl(self.subpanel, -1, self.setting.getValue(self.settingIndex)) + self.ctrl.SetMinSize((300, 20)) self.ctrl.Enable(False) self.button = wx.Button(self.subpanel, -1, _("Change Tool Head"))