Fix missing onScreenChanged event listener.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-06-28 23:58:12 -05:00
parent 367b0c2128
commit 9be42b0b49
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -22,6 +22,7 @@
var active = false;
tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
tablet.screenChanged.connect(onScreenChanged);
app_button = tablet.addButton({
icon: Script.resolvePath("./img/icon_white.png"),
@ -184,6 +185,15 @@
});
}
function onScreenChanged(type, url) {
if (url != Script.resolvePath("./more.qml")) {
active = false;
app_button.editProperties({
isActive: active,
});
}
}
async function request(url) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", url, false);