From 351df958cbf17ec2f9b7500a371e4b504be24da6 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Mon, 13 Aug 2012 00:07:24 +0200 Subject: [PATCH] pronterface.py: repeat messages from printer only in non-verbose mode. --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index e4ff777..1801771 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1425,7 +1425,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole): pass tstring=l.rstrip() #print tstring - if (tstring!="ok") and (tstring!="wait") and ("ok T:" not in tstring): + if (tstring!="ok") and (tstring!="wait") and ("ok T:" not in tstring) and (not self.p.loud): # print "*"+tstring+"*" # print "[" + time.strftime('%H:%M:%S',time.localtime(time.time())) + "] " + tstring wx.CallAfter(self.logbox.AppendText,tstring+"\n")