diff --git a/interface/resources/qml/hifi/commerce/wallet/PassphraseModal.qml b/interface/resources/qml/hifi/commerce/wallet/PassphraseModal.qml index 8d5d9f97de..2243143906 100644 --- a/interface/resources/qml/hifi/commerce/wallet/PassphraseModal.qml +++ b/interface/resources/qml/hifi/commerce/wallet/PassphraseModal.qml @@ -25,7 +25,7 @@ Item { HifiConstants { id: hifi; } id: root; - z: 998; + z: 997; property bool keyboardRaised: false; property string titleBarIcon: ""; property string titleBarText: ""; @@ -350,7 +350,7 @@ Item { Item { id: keyboardContainer; - z: 999; + z: 998; visible: keyboard.raised; property bool punctuationMode: false; anchors { @@ -361,11 +361,13 @@ Item { Image { id: lowerKeyboardButton; + z: 999; source: "images/lowerKeyboard.png"; - anchors.horizontalCenter: parent.horizontalCenter; - anchors.bottom: keyboard.top; - height: 30; - width: 120; + anchors.right: keyboard.right; + anchors.top: keyboard.showMirrorText ? keyboard.top : undefined; + anchors.bottom: keyboard.showMirrorText ? undefined : keyboard.bottom; + height: 50; + width: 60; MouseArea { anchors.fill: parent; diff --git a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml index 9beadd3361..472dd50b7d 100644 --- a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml +++ b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml @@ -165,7 +165,7 @@ Rectangle { WalletSetup { id: walletSetup; visible: root.activeView === "walletSetup"; - z: 998; + z: 997; anchors.fill: parent; Connections { @@ -192,7 +192,7 @@ Rectangle { PassphraseChange { id: passphraseChange; visible: root.activeView === "passphraseChange"; - z: 998; + z: 997; anchors.top: titleBarContainer.bottom; anchors.left: parent.left; anchors.right: parent.right; @@ -217,7 +217,7 @@ Rectangle { SecurityImageChange { id: securityImageChange; visible: root.activeView === "securityImageChange"; - z: 998; + z: 997; anchors.top: titleBarContainer.bottom; anchors.left: parent.left; anchors.right: parent.right; @@ -653,7 +653,7 @@ Rectangle { Item { id: keyboardContainer; - z: 999; + z: 998; visible: keyboard.raised; property bool punctuationMode: false; anchors { @@ -664,11 +664,13 @@ Rectangle { Image { id: lowerKeyboardButton; + z: 999; source: "images/lowerKeyboard.png"; - anchors.horizontalCenter: parent.horizontalCenter; - anchors.bottom: keyboard.top; - height: 30; - width: 120; + anchors.right: keyboard.right; + anchors.top: keyboard.showMirrorText ? keyboard.top : undefined; + anchors.bottom: keyboard.showMirrorText ? undefined : keyboard.bottom; + height: 50; + width: 60; MouseArea { anchors.fill: parent; diff --git a/interface/resources/qml/hifi/commerce/wallet/images/lowerKeyboard.png b/interface/resources/qml/hifi/commerce/wallet/images/lowerKeyboard.png index 9fc88262db..c14409d45c 100644 Binary files a/interface/resources/qml/hifi/commerce/wallet/images/lowerKeyboard.png and b/interface/resources/qml/hifi/commerce/wallet/images/lowerKeyboard.png differ