This commit is contained in:
Broque Thomas 2025-07-11 21:46:18 -07:00
parent 864e8c9e3c
commit dfe7944283
5 changed files with 2711 additions and 0 deletions

File diff suppressed because it is too large Load diff

View file

@ -1016,6 +1016,7 @@ class AlbumResultItem(QFrame):
color: #000000;
font-size: 12px;
font-weight: bold;
padding: 8px 12px;
}
QPushButton:hover {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,

View file

@ -578,6 +578,9 @@ class MediaPlayer(QWidget):
self.play_pause_btn.setEnabled(True)
self.stop_btn.setEnabled(True)
# Set to playing state (show pause button since track just started)
self.set_playing_state(True)
# Hide no track message and show player
self.no_track_label.setVisible(False)