3
0
Fork 0
mirror of https://thingvellir.net/git/overte synced 2025-03-27 23:52:03 +01:00

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
})
}