Merge pull request #13126 from birarda/67-to-master

merge RC67 back to master
This commit is contained in:
Stephen Birarda 2018-05-08 15:07:33 -07:00 committed by GitHub
commit a87b13c617
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 5 deletions

View file

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

View file

@ -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);

View file

@ -63,6 +63,9 @@
this.highlightedEntity = targetEntityID; this.highlightedEntity = targetEntityID;
} }
} }
} else if (this.highlightedEntity) {
dispatcherUtils.unhighlightTargetEntity(this.highlightedEntity);
this.highlightedEntity = null;
} }
} }