Browse Source

ui: add icons for script type and deterministic wallet

master
Sander van Grieken 2 years ago
parent
commit
ae9767880e
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. BIN
      electrum/gui/icons/hd.png
  2. BIN
      electrum/gui/icons/hd_white.png
  3. BIN
      electrum/gui/icons/script.png
  4. BIN
      electrum/gui/icons/script_white.png
  5. 2
      electrum/gui/qml/components/WalletDetails.qml

BIN
electrum/gui/icons/hd.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
electrum/gui/icons/hd_white.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
electrum/gui/icons/script.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
electrum/gui/icons/script_white.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

2
electrum/gui/qml/components/WalletDetails.qml

@ -73,6 +73,7 @@ Pane {
text: Daemon.currentWallet.txinType
font.pixelSize: constants.fontSizeSmall
font.bold: true
iconSource: '../../../icons/script_white.png'
}
Tag {
Layout.alignment: Qt.AlignHCenter
@ -80,6 +81,7 @@ Pane {
visible: Daemon.currentWallet.isDeterministic
font.pixelSize: constants.fontSizeSmall
font.bold: true
iconSource: '../../../icons/hd_white.png'
}
Tag {
Layout.alignment: Qt.AlignHCenter

Loading…
Cancel
Save