From c470783ff294bd7e0421c9871a26e83aaa430897 Mon Sep 17 00:00:00 2001 From: punix Date: Fri, 8 Nov 2024 21:39:28 +0100 Subject: [PATCH] - methods from class MainWindow move to class FrameWidgets for active color_label when theme change - optimize columnconfigure, rowconfigure in class MainWindow and FrameWidgets - add new Frame for Widgets on Bottom - optimize from tkinter * to from tkinter import filedialog, ttk, TclError --- wg_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wg_main.py b/wg_main.py index 4bc777e..e2f47b6 100755 --- a/wg_main.py +++ b/wg_main.py @@ -1097,7 +1097,7 @@ class MyToolTip(tk.Toplevel): if not tips: AUTO_CLEAR_TIME = 0 else: - AUTO_CLEAR_TIME = 900 # Millisecond. (1/90 sec.) + AUTO_CLEAR_TIME = 2000 # Millisecond. (1/200 sec.) def __init__(self, x_pos, y_pos, message=None, auto_clear=True): self.x_pos = x_pos