From c62fb159de247b378a846163d0be13a46b57bc41 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Mon, 21 Jul 2025 10:11:49 -0700 Subject: [PATCH] better --- ui/pages/sync.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/pages/sync.py b/ui/pages/sync.py index 162d985b..1538f67b 100644 --- a/ui/pages/sync.py +++ b/ui/pages/sync.py @@ -637,7 +637,10 @@ class PlaylistDetailsModal(QDialog): # Store modal reference to prevent garbage collection self.download_modal = modal - print("🖥️ Showing modal...") + print("🖥️ Closing current sync modal...") + self.accept() # Close the current sync modal + + print("🖥️ Showing download modal...") result = modal.exec() print(f"✅ Modal closed with result: {result}")