mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-18 09:37:59 +00:00
fix(Wallet): use correct theme colors for wallet icons in receive modal
This commit is contained in:
parent
f2524db882
commit
153d37a7dc
@ -39,7 +39,7 @@ Item {
|
||||
return
|
||||
}
|
||||
if (selectedAccount.iconColor) {
|
||||
selectedIconImgOverlay.color = selectedAccount.iconColor
|
||||
selectedIconImgOverlay.color = Utils.getCurrentThemeAccountColor(selectedAccount.iconColor) || Style.current.accountColors[0]
|
||||
}
|
||||
if (selectedAccount.name) {
|
||||
selectedTextField.text = selectedAccount.name
|
||||
@ -182,7 +182,7 @@ Item {
|
||||
ColorOverlay {
|
||||
anchors.fill: iconImg
|
||||
source: iconImg
|
||||
color: iconColor
|
||||
color: Utils.getCurrentThemeAccountColor(iconColor) || Style.current.accountColors[0]
|
||||
}
|
||||
Column {
|
||||
id: column
|
||||
|
Loading…
x
Reference in New Issue
Block a user