# HG changeset patch # User Edouard Tisserant # Date 1329329829 -3600 # Node ID c59baa44ec2fecbdcdf57e113bc670580a179c9d # Parent e4e1da75d4117b8e6e609693bac9f779a3de0238 Fixed Logger redraw problem on Windows created in previous commit diff -r e4e1da75d411 -r c59baa44ec2f Beremiz.py --- a/Beremiz.py Wed Feb 15 18:52:31 2012 +0100 +++ b/Beremiz.py Wed Feb 15 19:17:09 2012 +0100 @@ -319,7 +319,7 @@ self.output.SetDefaultStyle(style) self.default_style = style self.output.AppendText(s) - #self.output.ScrollLines(s.count('\n')+1) + self.output.ScrollLines(s.count('\n')+1) self.stack = [] self.lock.release() self.output.ShowPosition(self.output.GetLastPosition())