From 3089c375b66f4f461d0ffce28f071e20fb12e521 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Mon, 8 May 2017 00:10:01 +0300 Subject: [PATCH] Add word wrap for GUI text area --- blockcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockcheck.py b/blockcheck.py index e9b39c7..8435e77 100755 --- a/blockcheck.py +++ b/blockcheck.py @@ -988,7 +988,7 @@ if __name__ == "__main__": root = tk.Tk() root.title("BlockCheck") root.protocol("WM_DELETE_WINDOW", tk_terminate) - text = ThreadSafeConsole(root) + text = ThreadSafeConsole(root, wrap=tk.WORD) text.pack(expand=1, fill='both') threading.Thread(target=main).start() try: