1
0

qml: underline selected qr type indicator

This commit is contained in:
Sander van Grieken
2023-01-06 14:23:57 +01:00
parent 8795bd6d85
commit 881afa3b29

View File

@@ -57,17 +57,17 @@ ElDialog {
State {
name: 'bolt11'
PropertyChanges { target: qrloader; sourceComponent: qri_bolt11 }
PropertyChanges { target: bolt11label; color: Material.accentColor }
PropertyChanges { target: bolt11label; color: Material.accentColor; font.underline: true }
},
State {
name: 'bip21uri'
PropertyChanges { target: qrloader; sourceComponent: qri_bip21uri }
PropertyChanges { target: bip21label; color: Material.accentColor }
PropertyChanges { target: bip21label; color: Material.accentColor; font.underline: true }
},
State {
name: 'address'
PropertyChanges { target: qrloader; sourceComponent: qri_address }
PropertyChanges { target: addresslabel; color: Material.accentColor }
PropertyChanges { target: addresslabel; color: Material.accentColor; font.underline: true }
}
]