From db52bc00d9972e108ef56a1f9ee5ea78ffb57cb7 Mon Sep 17 00:00:00 2001 From: Luc Papeleux <L.Papeleux@ULiege.be> Date: Tue, 15 Sep 2020 09:52:57 +0200 Subject: [PATCH] add flush function to the Gui tools --- externalProgramPathGui.pyw | 3 ++- launchGui.pyw | 4 +++- postProLoopGui.pyw | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/externalProgramPathGui.pyw b/externalProgramPathGui.pyw index 38260a8..9f35f56 100755 --- a/externalProgramPathGui.pyw +++ b/externalProgramPathGui.pyw @@ -165,7 +165,8 @@ class ExtProgsConfGui(QWidget): print("Quit pressed") sys.exit() - + def flush(self): + pass # ============== Main ======================== def main(): diff --git a/launchGui.pyw b/launchGui.pyw index 6be6566..2af43e9 100755 --- a/launchGui.pyw +++ b/launchGui.pyw @@ -366,7 +366,9 @@ class LaunchGui(QWidget): if stuff != '': self.console.append(stuff) - + def flush(self): + pass +#==================================================================================== def main(): #define launcher launch = LaunchJob() diff --git a/postProLoopGui.pyw b/postProLoopGui.pyw index 8eab7eb..7b034ba 100755 --- a/postProLoopGui.pyw +++ b/postProLoopGui.pyw @@ -219,6 +219,8 @@ class PostProLoopGui(QWidget): print("Quit pressed") sys.exit() + def flush(self): + pass # ============== Main ======================== def main(): # create gui -- GitLab