From 7cfa8272a4720534658ada3903f266000b8a4803 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni <31625338+alexandraB99@users.noreply.github.com> Date: Thu, 9 Sep 2021 20:41:29 +0300 Subject: [PATCH] fix(desktop/profile) back seed indication missing When other than the profile menu was selected Closes #3457 --- ui/app/AppMain.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index 458d625840..cc1bcc28ba 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -410,7 +410,7 @@ Item { checked: appView.currentIndex == Utils.getAppSectionIndex(Constants.profile) onClicked: appMain.changeAppSection(Constants.profile) - badge.visible: !profileModel.mnemonic.isBackedUp && !checked + badge.visible: !profileModel.mnemonic.isBackedUp badge.anchors.rightMargin: 4 badge.anchors.topMargin: 5 badge.border.color: hovered ? Theme.palette.statusBadge.hoverBorderColor : Theme.palette.statusAppNavBar.backgroundColor