chiark / gitweb /
Allow text to wrap across lines in print console lulzbot-15.02.1-2.01
authornickthetait <tait@alephobjects.com>
Tue, 11 Aug 2015 18:40:20 +0000 (12:40 -0600)
committernickthetait <tait@alephobjects.com>
Tue, 11 Aug 2015 18:40:20 +0000 (12:40 -0600)
Cura/gui/printWindow.py

index 943ad92d98c44e7e59c4fe04f519cf6feed1dd77..a9c79dd38abcc721065862a0cef46b5ae98f93a0 100644 (file)
@@ -665,7 +665,7 @@ class printWindowAdvanced(wx.Frame):
                self.progress = wx.Gauge(self.panel, -1, range=1000)
 
                f = wx.Font(8, wx.FONTFAMILY_MODERN, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False)
-               self._termLog = wx.TextCtrl(self.panel, style=wx.TE_MULTILINE | wx.TE_DONTWRAP)
+               self._termLog = wx.TextCtrl(self.panel, style=wx.TE_MULTILINE)
                self._termLog.SetFont(f)
                self._termLog.SetEditable(0)
                self._termLog.SetMinSize((385, -1))