fixed bug

This commit is contained in:
Saifeddine ALOUI 2024-02-15 01:52:59 +01:00
parent 594d1c8c8d
commit b3e435fd65

View File

@ -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)