From 78f7e0f4e07448f7c634160e0b68308037dacb32 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni Date: Tue, 13 Jul 2021 16:32:54 +0300 Subject: [PATCH] [#2398] Updating "leave community" button color It should be red instead of blue Closes #2398 --- .../Chat/CommunityComponents/CommunityProfilePopupOverview.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml index f0934701d1..f4a08adc4b 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml @@ -228,7 +228,8 @@ Item { //% "Leave community" label: qsTrId("leave-community") iconName: "leave" - type: globalSettings.theme === Universal.Dark ? "secondary" : "primary" + type: "warn" + txtColor: Style.current.red onClicked: chatsModel.communities.leaveCommunity(communityId) } }