From: Youness Alaoui Date: Thu, 10 Sep 2015 21:00:56 +0000 (-0400) Subject: IntCtrl needs 28 pixels, so fix the size so it doesn't get cropped in temperature... X-Git-Tag: lulzbot-17.04~15 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1a95ce7306d9cb817858ac6f47827e7b41413e2c;p=cura.git IntCtrl needs 28 pixels, so fix the size so it doesn't get cropped in temperature field --- diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index a39cc459..92b5c7ce 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -953,7 +953,7 @@ class TemperatureField(wx.Panel): self.text = IntCtrl(self, -1) self.text.SetBounds(0, 300) - self.text.SetSize((60, 25)) + self.text.SetSize((60, 28)) self.unit = wx.StaticBitmap(self, -1, wx.BitmapFromImage(wx.Image( resources.getPathForImage('print-window-temperature-unit.png'))), (0, 0))