This commit is contained in:
Broque Thomas 2025-07-23 22:09:26 -07:00
parent ee91b72805
commit 1283e11f30
3 changed files with 7938 additions and 42 deletions

File diff suppressed because it is too large Load diff

View file

@ -2787,7 +2787,7 @@ class DownloadMissingTracksModal(QDialog):
self.correct_failed_btn = QPushButton("🔧 Correct Failed Matches")
self.correct_failed_btn.setFixedWidth(220)
self.correct_failed_btn.setStyleSheet("""
QPushButton { background-color: #ffc107; color: #000000; }
QPushButton { background-color: #ffc107; color: #000000; border-radius: 20px; font-weight: bold; }
QPushButton:hover { background-color: #ffca28; }
""")
self.correct_failed_btn.clicked.connect(self.on_correct_failed_matches_clicked)
@ -2795,12 +2795,20 @@ class DownloadMissingTracksModal(QDialog):
self.begin_search_btn = QPushButton("Begin Search")
self.begin_search_btn.setFixedSize(160, 40)
# THIS IS THE FIX: The specific stylesheet for this button is restored below
self.begin_search_btn.setStyleSheet("""
QPushButton {
background-color: #1db954; color: #000000; border: none;
border-radius: 20px; font-size: 14px; font-weight: bold;
}
QPushButton:hover { background-color: #1ed760; }
""")
self.begin_search_btn.clicked.connect(self.on_begin_search_clicked)
self.cancel_btn = QPushButton("Cancel")
self.cancel_btn.setFixedSize(110, 40)
self.cancel_btn.setStyleSheet("""
QPushButton { background-color: #d32f2f; color: #ffffff; }
QPushButton { background-color: #d32f2f; color: #ffffff; border-radius: 20px;}
QPushButton:hover { background-color: #f44336; }
""")
self.cancel_btn.clicked.connect(self.on_cancel_clicked)
@ -2809,7 +2817,7 @@ class DownloadMissingTracksModal(QDialog):
self.close_btn = QPushButton("Close")
self.close_btn.setFixedSize(110, 40)
self.close_btn.setStyleSheet("""
QPushButton { background-color: #616161; color: #ffffff; }
QPushButton { background-color: #616161; color: #ffffff; border-radius: 20px;}
QPushButton:hover { background-color: #757575; }
""")
self.close_btn.clicked.connect(self.on_close_clicked)
@ -2822,6 +2830,7 @@ class DownloadMissingTracksModal(QDialog):
return button_frame
def on_begin_search_clicked(self):
"""Handle Begin Search button click - starts Plex analysis"""
self.begin_search_btn.hide()