Fix bool.

This commit is contained in:
Kasen IO 2020-08-15 01:33:18 -04:00
parent 1c457b766c
commit 4336291635

View file

@ -53,7 +53,7 @@ Item {
root.item = newItem
root.item.url = url
root.item.scriptUrl = scriptUrl
root.item.transparentBackground = webBackgroundColor.endsWith("FF") ? true : false
root.item.transparentBackground = webBackgroundColor.endsWith("FF") ? false : true
})
}