Merge branch 'experimental' of https://github.com/kliment/Printrun into split-gui

master
Guillaume Seguin 2012-09-05 13:26:00 +02:00
commit 5f8d69c653
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class macroed(wx.Dialog):
titlesizer.Add(self.cancelb)
topsizer = wx.BoxSizer(wx.VERTICAL)
topsizer.Add(titlesizer, 0, wx.EXPAND)
self.e = wx.TextCtrl(self.panel, style = wx.TE_MULTILINE+wx.HSCROLL, size = (400, 400))
self.e = wx.TextCtrl(self.panel, style = wx.HSCROLL|wx.TE_MULTILINE|wx.TE_RICH2, size = (400, 400))
if not self.gcode:
self.e.SetValue(self.unindent(definition))
else: