diff --git a/manifest.json b/manifest.json index a9cbccd..330e900 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-style-settings", "name": "Style Settings", - "version": "0.4.3", + "version": "0.4.4", "minAppVersion": "0.11.5", "description": "Offers controls for adjusting theme, plugin, and snippet CSS variables.", "author": "mgmeyers", diff --git a/src/main.ts b/src/main.ts index 07dd426..8867a1d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -72,6 +72,9 @@ export default class CSSSettingsPlugin extends Plugin { parseCSS() { clearTimeout(this.debounceTimer); + this.settingsList = []; + this.errorList = []; + this.debounceTimer = window.setTimeout(() => { const styleSheets = document.styleSheets;