mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-07 00:02:41 +02:00
Fix missing onScreenChanged event listener.
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
367b0c2128
commit
9be42b0b49
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue