Remove customization for text color and hover from TextButtonContents.
authorCamila Ayres <hello@camilasan.com>
Sun, 1 Sep 2024 19:34:42 +0000 (21:34 +0200)
committerMatthieu Gallien <matthieu_gallien@yahoo.fr>
Fri, 6 Sep 2024 08:42:08 +0000 (10:42 +0200)
Signed-off-by: Camila Ayres <hello@camilasan.com>
src/gui/tray/TextButtonContents.qml

index dbc3aa460c24b2b58af5c1462a696a6cf8976843..0d49e63ba96e0df5893e3ec525c2f61d589dde88 100644 (file)
@@ -20,13 +20,10 @@ import Style
 
 EnforcedPlainTextLabel {
     property bool hovered: false
-    property color textColor: palette.windowText
-    property color textColorHovered: palette.midlight
     property bool bold: false
 
     font.underline: true
     font.bold: bold
-    color: hovered ? textColorHovered : textColor
 
     horizontalAlignment: Text.AlignLeft
     verticalAlignment: Text.AlignVCenter