From b3e435fd653dbc39fccb8b89d1964f8e8a5720ef Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Thu, 15 Feb 2024 01:52:59 +0100 Subject: [PATCH] fixed bug --- endpoints/lollms_advanced.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/endpoints/lollms_advanced.py b/endpoints/lollms_advanced.py index 3c04b17d..a3fdb181 100644 --- a/endpoints/lollms_advanced.py +++ b/endpoints/lollms_advanced.py @@ -59,6 +59,9 @@ def show_yes_no_dialog(title, text): root = tk.Tk() root.withdraw() + # Make the window appear on top + root.attributes('-topmost', True) + # Show the dialog box result = messagebox.askyesno(title, text)