From 4026d3c60da348d9f409c1478841b98111cbd497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Mon, 5 Sep 2022 11:24:37 +0200 Subject: [PATCH] fix(AppMain): profile image doesn't look good after changing language Fixes #7197 --- ui/app/mainui/AppMain.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/mainui/AppMain.qml b/ui/app/mainui/AppMain.qml index 9e3bcaa630..a15a11340f 100644 --- a/ui/app/mainui/AppMain.qml +++ b/ui/app/mainui/AppMain.qml @@ -354,8 +354,8 @@ Item { icon.source: appMain.rootStore.userProfileInst.icon width: 32 height: 32 - identicon.width: width - identicon.height: height + identicon.asset.width: width + identicon.asset.height: height identicon.asset.charactersLen: 2 identicon.asset.color: Utils.colorForPubkey(appMain.rootStore.userProfileInst.pubKey) identicon.ringSettings.ringSpecModel: Utils.getColorHashAsJson(appMain.rootStore.userProfileInst.pubKey)