diff options
author | Paul Buxton <paulbuxton.mail@googlemail.com> | 2019-10-05 02:21:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-06 11:39:46 -0700 |
commit | 65ec16e59d7c55ea9857a1b03db838fe2561986a (patch) | |
tree | effa45e3d94787d22e7562f28abe487ff14f087f /mobile-widgets/qml/Log.qml | |
parent | d82e008b4c1feac9d2bf3f68db9fc15a0718ec05 (diff) | |
download | subsurface-65ec16e59d7c55ea9857a1b03db838fe2561986a.tar.gz |
Fix text in darkmode on mobile app.
Signed-off-by: Paul Buxton <paulbuxton.mail@googlemail.com>
Diffstat (limited to 'mobile-widgets/qml/Log.qml')
-rw-r--r-- | mobile-widgets/qml/Log.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/Log.qml b/mobile-widgets/qml/Log.qml index 72f54606c..a027b7513 100644 --- a/mobile-widgets/qml/Log.qml +++ b/mobile-widgets/qml/Log.qml @@ -27,7 +27,7 @@ Kirigami.ScrollablePage { delegate : Text { width: logWindow.width wrapMode: Text.WrapAtWordBoundaryOrAnywhere - color: Kirigami.Theme.textColor + color: subsurfaceTheme.textColor text : message font.pointSize: subsurfaceTheme.smallPointSize leftPadding: Kirigami.Units.gridUnit / 2 |