1
0

qml: icons, styling

This commit is contained in:
Sander van Grieken
2024-02-19 14:03:39 +01:00
parent 27bb28e35b
commit de9c0249c7
4 changed files with 6 additions and 1 deletions

View File

@@ -194,7 +194,9 @@ Pane {
Layout.columnSpan: 2
Layout.topMargin: constants.paddingSmall
visible: addressdetails.pubkeys.length
text: qsTr('Public keys')
text: addressdetails.pubkeys.length > 1
? qsTr('Public keys')
: qsTr('Public key')
color: Material.accentColor
}

View File

@@ -18,6 +18,7 @@ ElDialog {
property alias sendButtonText: sendButton.text
title: qsTr('Transaction Fee')
iconSource: Qt.resolvedUrl('../../icons/question.png')
// copy these to finalizer
onAddressChanged: finalizer.address = address

View File

@@ -11,6 +11,7 @@ ElDialog {
id: rootItem
title: qsTr('Proxy settings')
iconSource: Qt.resolvedUrl('../../icons/status_connected_proxy.png')
width: parent.width
height: parent.height

View File

@@ -11,6 +11,7 @@ ElDialog {
id: rootItem
title: qsTr('Server settings')
iconSource: Qt.resolvedUrl('../../icons/network.png')
width: parent.width
height: parent.height