summary refs log tree commit diff
path: root/resources/qml/RawMessageDialog.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-07-31 13:55:56 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-07-31 13:55:56 -0400
commit092f936fc9efed519b83288eeda386daa9af6a91 (patch)
tree580536b4ba7d01e6c404584162447ea0d1cd455c /resources/qml/RawMessageDialog.qml
parentQML the raw message dialog (diff)
downloadnheko-092f936fc9efed519b83288eeda386daa9af6a91.tar.xz
Fix colors for manual dark theme
Diffstat (limited to 'resources/qml/RawMessageDialog.qml')
-rw-r--r--resources/qml/RawMessageDialog.qml7
1 files changed, 6 insertions, 1 deletions
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 + } } }