From 53811f93b2c7b1dc098af6bf0ff5af7cc99feee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= Date: Thu, 27 Jul 2023 14:40:12 -0400 Subject: [PATCH] misc: remove weird hovered animation on push buttons Change-Id: Ibad1dd9a6ab8c780123a0342bd4cc138b04663c5 --- src/app/settingsview/SettingsSidePanel.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/settingsview/SettingsSidePanel.qml b/src/app/settingsview/SettingsSidePanel.qml index 0ad243d6..887a3dfb 100644 --- a/src/app/settingsview/SettingsSidePanel.qml +++ b/src/app/settingsview/SettingsSidePanel.qml @@ -209,7 +209,7 @@ SidePanelBase { buttonTextFont.weight: isChildSelected ? Font.Medium : Font.Normal buttonTextEnableElide: true - normalColor: "transparent" + normalColor: JamiTheme.backgroundColor hoveredColor: JamiTheme.smartListHoveredColor imageColor: JamiTheme.tintedBlue @@ -255,7 +255,7 @@ SidePanelBase { buttonTextFont.weight: isSelected ? Font.Medium : Font.Normal buttonTextEnableElide: true - normalColor: isSelected ? JamiTheme.smartListSelectedColor : "transparent" + normalColor: isSelected ? JamiTheme.smartListSelectedColor : JamiTheme.backgroundColor hoveredColor: JamiTheme.smartListHoveredColor onClicked: open(modelData.id)