From 1a95ce7306d9cb817858ac6f47827e7b41413e2c Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 10 Sep 2015 17:00:56 -0400 Subject: [PATCH] IntCtrl needs 28 pixels, so fix the size so it doesn't get cropped in temperature field --- Cura/gui/printWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.30.2