From 519c750a9596493a6d4dac3f865289b9151c8784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Thu, 30 Dec 2021 16:14:44 -0500 Subject: [PATCH] logsview: fix logs color in dark mode The textarea is still white in dark mode, so the text must be black Change-Id: I6d475cfb920fcd9f3b51e6df01eba4d30a0bc675 --- src/settingsview/components/LogsView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settingsview/components/LogsView.qml b/src/settingsview/components/LogsView.qml index 68fd1f37f..3fbfb8aee 100644 --- a/src/settingsview/components/LogsView.qml +++ b/src/settingsview/components/LogsView.qml @@ -239,7 +239,7 @@ Window { font.hintingPreference: Font.PreferNoHinting readOnly: true - color: JamiTheme.textColor + color: JamiTheme.blackColor wrapMode: TextArea.Wrap selectByMouse: true -- GitLab