diff --git a/images/download-white.png b/images/download-white.png deleted file mode 100644 index a8621352..00000000 Binary files a/images/download-white.png and /dev/null differ diff --git a/images/download-white@2x.png b/images/download-white@2x.png deleted file mode 100644 index c91be23b..00000000 Binary files a/images/download-white@2x.png and /dev/null differ diff --git a/images/external-link-white.png b/images/external-link-white.png deleted file mode 100644 index e771b8d1..00000000 Binary files a/images/external-link-white.png and /dev/null differ diff --git a/images/external-link-white@2x.png b/images/external-link-white@2x.png deleted file mode 100644 index b0a72f96..00000000 Binary files a/images/external-link-white@2x.png and /dev/null differ diff --git a/pages/Receive.qml b/pages/Receive.qml index 04e7676e..3ed70b0f 100644 --- a/pages/Receive.qml +++ b/pages/Receive.qml @@ -290,34 +290,39 @@ Rectangle { } } - RowLayout { - spacing: parent.spacing - - MoneroComponents.StandardButton { - rightIcon: "qrc:///images/download-white.png" - onClicked: qrFileDialog.open() - } + MoneroComponents.StandardButton { + Layout.preferredWidth: 220 + small: true + text: FontAwesome.save + " %1".arg(qsTr("Save as image")) + translationManager.emptyString + label.font.family: FontAwesome.fontFamily + fontSize: 13 + onClicked: qrFileDialog.open() + } - MoneroComponents.StandardButton { - rightIcon: "qrc:///images/external-link-white.png" - onClicked: { - clipboard.setText(TxUtils.makeQRCodeString(appWindow.current_address)); - appWindow.showStatusMessage(qsTr("Copied to clipboard") + translationManager.emptyString, 3); - } + MoneroComponents.StandardButton { + Layout.preferredWidth: 220 + small: true + text: FontAwesome.clipboard + " %1".arg(qsTr("Copy to clipboard")) + translationManager.emptyString + label.font.family: FontAwesome.fontFamily + fontSize: 13 + onClicked: { + clipboard.setText(TxUtils.makeQRCodeString(appWindow.current_address)); + appWindow.showStatusMessage(qsTr("Copied to clipboard") + translationManager.emptyString, 3); } + } - MoneroComponents.StandardButton { - text: FontAwesome.eye - label.font.family: FontAwesome.fontFamily - fontSize: 24 - width: 36 - visible: appWindow.currentWallet ? appWindow.currentWallet.isHwBacked() : false - onClicked: { - appWindow.currentWallet.deviceShowAddressAsync( - appWindow.currentWallet.currentSubaddressAccount, - appWindow.current_subaddress_table_index, - ''); - } + MoneroComponents.StandardButton { + Layout.preferredWidth: 220 + small: true + text: FontAwesome.eye + " %1".arg(qsTr("Show on device")) + translationManager.emptyString + label.font.family: FontAwesome.fontFamily + fontSize: 13 + visible: appWindow.currentWallet ? appWindow.currentWallet.isHwBacked() : false + onClicked: { + appWindow.currentWallet.deviceShowAddressAsync( + appWindow.currentWallet.currentSubaddressAccount, + appWindow.current_subaddress_table_index, + ''); } } } diff --git a/qml.qrc b/qml.qrc index c731d599..c6a4218d 100644 --- a/qml.qrc +++ b/qml.qrc @@ -3,10 +3,6 @@ main.qml LeftPanel.qml MiddlePanel.qml - images/download-white.png - images/download-white@2x.png - images/external-link-white.png - images/external-link-white@2x.png components/Label.qml components/SettingsListItem.qml images/whatIsIcon.png