mirror of
https://github.com/overte-org/overte.git
synced 2025-07-28 23:20:30 +02:00
Merge pull request #13126 from birarda/67-to-master
merge RC67 back to master
This commit is contained in:
commit
a87b13c617
3 changed files with 9 additions and 5 deletions
|
@ -84,11 +84,9 @@ Item {
|
||||||
height: undefined // invalidate so that the image's size sets the height
|
height: undefined // invalidate so that the image's size sets the height
|
||||||
focus: true
|
focus: true
|
||||||
|
|
||||||
style: OriginalStyles.ButtonStyle {
|
background: Image {
|
||||||
background: Image {
|
id: buttonImage
|
||||||
id: buttonImage
|
source: "../../images/steam-sign-in.png"
|
||||||
source: "../../images/steam-sign-in.png"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
onClicked: signInBody.login()
|
onClicked: signInBody.login()
|
||||||
}
|
}
|
||||||
|
|
|
@ -564,6 +564,9 @@ Script.include("/~/system/libraries/Xform.js");
|
||||||
}
|
}
|
||||||
} else if (this.distanceRotating) {
|
} else if (this.distanceRotating) {
|
||||||
this.distanceRotate(otherFarGrabModule);
|
this.distanceRotate(otherFarGrabModule);
|
||||||
|
} else if (this.highlightedEntity) {
|
||||||
|
Selection.removeFromSelectedItemsList(DISPATCHER_HOVERING_LIST, "entity", this.highlightedEntity);
|
||||||
|
this.highlightedEntity = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this.exitIfDisabled(controllerData);
|
return this.exitIfDisabled(controllerData);
|
||||||
|
|
|
@ -63,6 +63,9 @@
|
||||||
this.highlightedEntity = targetEntityID;
|
this.highlightedEntity = targetEntityID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (this.highlightedEntity) {
|
||||||
|
dispatcherUtils.unhighlightTargetEntity(this.highlightedEntity);
|
||||||
|
this.highlightedEntity = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue