From 72cd641c72de307819b2f8c139d871fbef1664de Mon Sep 17 00:00:00 2001 From: Alexander Bilyak Date: Wed, 24 Nov 2021 11:37:20 +0100 Subject: [PATCH] GODT-1391: Fix link colors across GUI --- internal/frontend/qml/HelpView.qml | 1 - internal/frontend/qml/Proton/Label.qml | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/frontend/qml/HelpView.qml b/internal/frontend/qml/HelpView.qml index 0e83559e..f875540e 100644 --- a/internal/frontend/qml/HelpView.qml +++ b/internal/frontend/qml/HelpView.qml @@ -102,7 +102,6 @@ SettingsView { type: Label.Caption color: root.colorScheme.text_weak textFormat: Text.StyledText - linkColor: root.colorScheme.interaction_norm_active horizontalAlignment: Text.AlignHCenter diff --git a/internal/frontend/qml/Proton/Label.qml b/internal/frontend/qml/Proton/Label.qml index 92045f7e..8eeba453 100644 --- a/internal/frontend/qml/Proton/Label.qml +++ b/internal/frontend/qml/Proton/Label.qml @@ -50,7 +50,8 @@ T.Label { property int type: Proton.Label.LabelType.Body color: root.enabled ? root.colorScheme.text_norm : root.colorScheme.text_disabled - palette.link: root.colorScheme.interaction_norm + linkColor: root.colorScheme.interaction_norm + palette.link: linkColor font.family: Style.font_family lineHeightMode: Text.FixedHeight