Fix GPU Memory Locks

This commit is contained in:
2025-06-11 22:57:57 +10:00
parent 8ae144bc65
commit 95e13ada7b
2 changed files with 24 additions and 14 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ export const settings = await ReactiveStore.getPluginStorage("RadiantLyrics", {
lyricsGlowEnabled: true,
spinningCoverEverywhere: false,
performanceMode: false,
spinningArtEnabled: true,
spinningArtEnabled: false,
backgroundContrast: 120,
backgroundBlur: 80,
backgroundBrightness: 40,
@@ -98,7 +98,7 @@ export const Settings = () => {
desc="Disable the spinning cover art background animation"
checked={!spinningArtEnabled}
onChange={(_, checked: boolean) => {
console.log("Disable Cover Spin:", checked ? "enabled" : "disabled");
console.log("Disable Cover Spin:", checked ? "disabled" : "enabled");
setSpinningArtEnabled((settings.spinningArtEnabled = !checked));
if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground();