diff --git a/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml b/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml index aaec6cb9e8..10dfa99f09 100644 --- a/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml +++ b/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml @@ -52,7 +52,6 @@ Rectangle { onEntered: { Tablet.playSound(TabletEnums.ButtonHover); root.requestedWidth = root.hoveredWidth; - emoteButtonsRepeater.ItemAt(buttonsModel.count -1).buttonMouseArea.hoverEnabled = true; } onExited: { Tablet.playSound(TabletEnums.ButtonClick); @@ -88,12 +87,11 @@ Rectangle { The main container of the actual buttons */ - Rectangle { + Row { id: drawerContainer z: 1 - color: simplifiedUI.colors.white anchors.top: parent.top - anchors.right: parent.right + leftPadding: root.originalWidth height: parent.height width: root.hoveredWidth diff --git a/scripts/simplifiedUI/ui/simplifiedUI.js b/scripts/simplifiedUI/ui/simplifiedUI.js index 686fb7752a..c145c09f22 100644 --- a/scripts/simplifiedUI/ui/simplifiedUI.js +++ b/scripts/simplifiedUI/ui/simplifiedUI.js @@ -372,7 +372,7 @@ function loadSimplifiedTopBar() { }; } else { windowProps.position = { - x: 500, + x: Window.x, y: Window.y }; }