()
| 4410 | updateStyle("glowify-playbar-cover-radius", css); |
| 4411 | localStorage.setItem(PLAYBAR_COVER_BORDER_RADIUS_KEY, String(px)); |
| 4412 | } |
| 4413 | function ensurePlaybarCoverBorderRadiusApplied() { |
| 4414 | const comfyEnabled = readLS("glowify-comfy-cover-enabled", "hide"); |
| 4415 | let saved = readNum(PLAYBAR_COVER_BORDER_RADIUS_KEY, PLAYBAR_COVER_DEFAULTS.borderRadius); |
| 4416 | if (comfyEnabled === "hide" && saved === LEGACY_PLAYBAR_COVER_DEFAULT_RADIUS) { |
| 4417 | saved = PLAYBAR_COVER_DEFAULTS.borderRadius; |
| 4418 | localStorage.setItem(PLAYBAR_COVER_BORDER_RADIUS_KEY, String(saved)); |
no test coverage detected