From: Julien Date: Sat, 8 Nov 2025 11:36:32 +0000 (+0100) Subject: Prevent GUI from crashing when logging X-Git-Url: https://git.poda.fr/?a=commitdiff_plain;h=c20859b90b1d2fe579c11b3439d74c63ea838d66;p=converter.git Prevent GUI from crashing when logging --- diff --git a/converter.py b/converter.py index b6db141..b87a7cd 100755 --- a/converter.py +++ b/converter.py @@ -23,7 +23,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ''' import argparse -import collections +import collections.abc import filecmp # diff import os import queue @@ -884,7 +884,8 @@ class GUI: else: self.logOutput.insert(tk.END, message + "\n") - self.logOutput.see(tk.END) + # Crashes + #self.logOutput.see(tk.END) self.logOutput.configure(state="disabled") self.logLock.release()