From: daid Date: Fri, 4 May 2012 09:47:55 +0000 (+0200) Subject: There is no perfect solution for #90, but this makes it a bit better. X-Git-Tag: RC3~13^2~1^2~4 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=79ef4ac2b6742d8600259bced3c38c7e9f202725;p=cura.git There is no perfect solution for #90, but this makes it a bit better. --- diff --git a/Cura/gui/gcodeTextArea.py b/Cura/gui/gcodeTextArea.py index 3c023325..68d05249 100644 --- a/Cura/gui/gcodeTextArea.py +++ b/Cura/gui/gcodeTextArea.py @@ -19,6 +19,8 @@ class GcodeTextArea(wx.stc.StyledTextCtrl): self.IndicatorSetForeground(0, "#0000FF") self.IndicatorSetStyle(1, wx.stc.STC_INDIC_SQUIGGLE) self.IndicatorSetForeground(1, "#FF0000") + self.SetWrapMode(wx.stc.STC_WRAP_NONE) + self.SetScrollWidth(1000) #GCodes and MCodes as supported by Marlin #GCode 21 is not really supported by Marlin, but we still do not report it as error as it's often used.