blob: 2950f04a360b1354b20d6a30cfa2f3cfe24d99bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
From ca66227303a93a25fafef89831fa4d49d83e9f9a Mon Sep 17 00:00:00 2001
From: Dirk Hohndel <dirk@hohndel.org>
Date: Sun, 20 Dec 2020 16:41:56 -0800
Subject: [PATCH 14/15] fix context drawer header color
This didn't pick up the Theme text color by default.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
src/controls/ContextDrawer.qml | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/controls/ContextDrawer.qml b/src/controls/ContextDrawer.qml
index 7c9f6cc6..a824ea23 100644
--- a/src/controls/ContextDrawer.qml
+++ b/src/controls/ContextDrawer.qml
@@ -170,6 +170,7 @@ OverlayDrawer {
elide: Text.ElideRight
level: 2
text: root.title
+ color: Theme.textColor
}
}
delegate: Column {
--
2.25.1
|