From: Youness Alaoui Date: Thu, 10 Sep 2015 21:01:14 +0000 (-0400) Subject: Fix issue with temp graph appearing black on my PC X-Git-Tag: lulzbot-17.04~14 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0bbe56b593e222794acd7c411439e4a29555bf8e;p=cura.git Fix issue with temp graph appearing black on my PC --- diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 92b5c7ce..6f1f484a 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -1003,6 +1003,7 @@ class TemperatureGraph(wx.Panel): self._lastDraw = now dc = wx.MemoryDC() dc.SelectObject(self._backBuffer) + dc.SetBackground(wx.Brush(wx.WHITE)) dc.Clear() dc.SetFont(wx.SystemSettings.GetFont(wx.SYS_SYSTEM_FONT)) w, h = self.GetSizeTuple()