[bugfix] Confirmation Modal: Add lift() after displaying the confirmation modal to prevent it from being hidden by the main window cover.

This commit is contained in:
Sakamoto Shiina
2023-12-30 18:13:40 +09:00
parent 38edeaebf3
commit 053b8080a4

View File

@@ -221,6 +221,7 @@ class _CreateConfirmationModal(CTkToplevel):
target_widget=self
)
fadeInAnimation(self, steps=5, interval=0.005, max_alpha=1)
self.lift()
self.focus_set()