From c86f67b9f100400944c5c6a42e13d11685057670 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 22 Feb 2021 14:00:08 -0500 Subject: [PATCH] fix: fix community header button in dark mode --- .../Chat/CommunityComponents/CommunityHeaderButton.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityHeaderButton.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityHeaderButton.qml index f6447dd218..e86547ca88 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityHeaderButton.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityHeaderButton.qml @@ -13,6 +13,7 @@ Button { background: Rectangle { id: btnBackground radius: Style.current.radius + color: Style.current.transparent } contentItem: Item { @@ -55,7 +56,7 @@ Button { onPressed: communityProfilePopup.open(); hoverEnabled: true onExited: { - btnBackground.color = "transparent" + btnBackground.color = Style.current.transparent } onEntered: { btnBackground.color = Style.current.backgroundHover