You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2025. It is now read-only.
reply=QMessageBox.question(None, 'Confirmation', 'Are you sure you want to uninstall Spicetify?', QMessageBox.StandardButton.Yes|QMessageBox.StandardButton.No)
123
+
reply=QMessageBox.question(None, 'Uninstall', 'Are you sure you want to uninstall Spicetify and remove all installed mods/themes ?', QMessageBox.StandardButton.Yes|QMessageBox.StandardButton.No)
124
124
ifreply==QMessageBox.StandardButton.Yes:
125
125
self.setCursor(Qt.CursorShape.WaitCursor)
126
126
self.bt_uninstall.setEnabled(False)
@@ -144,10 +144,21 @@ def Custom(self):
144
144
145
145
# Disables Spotify self update function using permissions
146
146
defDisableUpdate(self):
147
-
if (blockSpotifyUpdate(self.check_noupdate.isChecked())):
reply=QMessageBox.question(None, 'Deactivate Updates', 'This function will try to disable all automatic updates for Spotify! Are you sure you want to do this?', QMessageBox.StandardButton.Yes|QMessageBox.StandardButton.No)
149
+
ifreply==QMessageBox.StandardButton.Yes:
150
+
if (blockSpotifyUpdate(self.check_noupdate.isChecked())):
0 commit comments