Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickthetait <tait@alephobjects.com>2015-08-11 21:40:20 +0300
committernickthetait <tait@alephobjects.com>2015-08-11 21:40:20 +0300
commit17cf865f7f5a3444ed44f07832b46e957b7074d7 (patch)
tree800f19a6678d8b1b29ff679ccb44cd3e741f8923
parent89346df6f0259b55512b204cd2e20823f7767433 (diff)
Allow text to wrap across lines in print consolelulzbot-15.02.1-2.01
-rw-r--r--Cura/gui/printWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py
index 943ad92d98..a9c79dd38a 100644
--- a/Cura/gui/printWindow.py
+++ b/Cura/gui/printWindow.py
@@ -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))