From 092f936fc9efed519b83288eeda386daa9af6a91 Mon Sep 17 00:00:00 2001 From: Loren Burkholder Date: Sat, 31 Jul 2021 13:55:56 -0400 Subject: [PATCH] Fix colors for manual dark theme --- resources/qml/RawMessageDialog.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/qml/RawMessageDialog.qml b/resources/qml/RawMessageDialog.qml index 62a5770f..231e2f6d 100644 --- a/resources/qml/RawMessageDialog.qml +++ b/resources/qml/RawMessageDialog.qml @@ -25,6 +25,7 @@ ApplicationWindow { } ScrollView { + anchors.margins: Nheko.paddingMedium anchors.fill: parent palette: Nheko.colors padding: Nheko.paddingMedium @@ -33,8 +34,12 @@ ApplicationWindow { id: rawMessageView font: Nheko.monospaceFont() - palette: Nheko.colors + color: Nheko.colors.text readOnly: true + + background: Rectangle { + color: Nheko.colors.base + } } }