From d840ecab12bb5baf0ed35e66db36b8008f05257a Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Wed, 22 Sep 2021 09:45:25 +0200 Subject: [PATCH] fix(@desktop/settings): Navbar icon shows a profile icon instead of settings icon fixes #3615 --- 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 2db62e3a81..a73e62822c 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -336,7 +336,7 @@ Item { id: profileBtn //% "Settings" tooltip.text: qsTrId("settings") - icon.name: "profile" + icon.name: "settings" checked: appView.currentIndex == Utils.getAppSectionIndex(Constants.profile) onClicked: appMain.changeAppSection(Constants.profile)