From 057e1f5c67b52d1634b289e78e1a60b6b05233bd Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 10 Oct 2023 01:10:10 +0200 Subject: [PATCH] Fix reply and topic colors --- resources/qml/TimelineEvent.qml | 10 +++++----- resources/qml/TopBar.qml | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/resources/qml/TimelineEvent.qml b/resources/qml/TimelineEvent.qml index 7e60328d..ed6eb87e 100644 --- a/resources/qml/TimelineEvent.qml +++ b/resources/qml/TimelineEvent.qml @@ -31,7 +31,7 @@ EventDelegateChooser { Layout.fillWidth: true //Layout.maximumWidth: implicitWidth - color: type == MtxEvent.NoticeMessage ? palette.buttonText : palette.text + color: type == MtxEvent.NoticeMessage ? palette.active.buttonText : palette.active.text font.italic: type == MtxEvent.NoticeMessage formatted: formattedBody keepFullText: true @@ -48,7 +48,7 @@ EventDelegateChooser { Layout.fillWidth: true //Layout.maximumWidth: implicitWidth - color: TimelineManager.userColor(userId, palette.base) + color: TimelineManager.userColor(userId, palette.active.base) font.italic: true formatted: TimelineManager.escapeEmoji(userName) + " " + formattedBody keepFullText: true @@ -63,7 +63,7 @@ EventDelegateChooser { required property string userName body: '' - color: palette.buttonText + color: palette.active.buttonText font.italic: true font.pointSize: Settings.fontSize * 0.8 formatted: '' @@ -83,7 +83,7 @@ EventDelegateChooser { Layout.fillWidth: true body: formatted - color: palette.buttonText + color: palette.active.buttonText font.italic: true formatted: { switch (callType) { @@ -109,7 +109,7 @@ EventDelegateChooser { Layout.fillWidth: true body: formatted - color: palette.buttonText + color: palette.active.buttonText font.italic: true formatted: { switch (type) { diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml index aba91763..b7cd3ff0 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml @@ -125,6 +125,8 @@ Pane { Layout.row: 2 clip: true enabled: false + // don't use the disabled color + color: topBar.palette.text selectByMouse: false text: roomTopic }