Fix invalid data types in configSchema.json (#420)

Fix two instances inside `configSchema.json` where the invalid data
type `bool` is used, instead of `boolean`.
This commit is contained in:
Apostroll Hardtrollias 2024-04-16 00:31:37 +03:00 committed by GitHub
parent be1533ad7f
commit 8cb9be5970
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -407,7 +407,7 @@
"default": 12 "default": 12
}, },
"blur": { "blur": {
"type": "bool", "type": "boolean",
"description": "Appy the artwork as the MPRIS background and blur it", "description": "Appy the artwork as the MPRIS background and blur it",
"default": true "default": true
} }
@ -446,7 +446,7 @@
"default": "" "default": ""
}, },
"active": { "active": {
"type": "bool", "type": "boolean",
"description": "Wether the toggle button is active as default or not", "description": "Wether the toggle button is active as default or not",
"default": false "default": false
} }