diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 17:06:34 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 17:06:34 -0800 |
commit | 43b5ac378a4e66252d287990ad3beb197929e65d (patch) | |
tree | 15617e5aa62b9f5c5c1e1c96fe4db6db5d9d5584 /mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch | |
parent | 196bd7b7b247d8ac53574d4ab15ed25e66f92bc6 (diff) | |
download | subsurface-43b5ac378a4e66252d287990ad3beb197929e65d.tar.gz |
mobile/UI: fix context drawer header
Once again I couldn't fix this without making changes to Kirigami.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch')
-rw-r--r-- | mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch b/mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch new file mode 100644 index 000000000..2950f04a3 --- /dev/null +++ b/mobile-widgets/3rdparty/0014-fix-context-drawer-header-color.patch @@ -0,0 +1,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 + |