diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-06-21 23:09:08 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-06-21 23:41:41 +0200 |
commit | ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9 (patch) | |
tree | cf8bb92a39bd5aa125e72bcd79a985b680802866 /kde-plasma/plasma-workspace/files | |
parent | kde-plasma/plasma-nm: [2/2] Fix password is asked twice (diff) | |
download | kde-ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9.tar.gz kde-ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9.tar.bz2 kde-ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9.zip |
kde-plasma/plasma-workspace: systray [2/4]: Fix unreadable text w/ Breeze Dark
See also: https://mail.kde.org/pipermail/distributions/2020-June/000368.html
KDE-Bug: https://bugs.kde.org/show_bug.cgi?id=422684
Upstream commit faef126255222f727219bf69ac2b89857dc61ab2
"Port applets to use PlasmaExtras.PlaceholderMessage"
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-workspace/files')
-rw-r--r-- | kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch new file mode 100644 index 0000000000..527e199cc6 --- /dev/null +++ b/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch @@ -0,0 +1,44 @@ +From faef126255222f727219bf69ac2b89857dc61ab2 Mon Sep 17 00:00:00 2001 +From: Nate Graham <nate@kde.org> +Date: Sun, 14 Jun 2020 09:08:21 -0600 +Subject: [PATCH] Port applets to use PlasmaExtras.PlaceholderMessage + +The Kirigami version uses QQC2 elements which don't respect the plasma +theme and color scheme, leading to thing slooking out of place +especially when using a dark color theme or scheme. + +Depends on https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/13 +--- + applets/clipboard/contents/ui/Menu.qml | 2 +- + .../notifications/package/contents/ui/FullRepresentation.qml | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/applets/clipboard/contents/ui/Menu.qml b/applets/clipboard/contents/ui/Menu.qml +index 0bd6064a5..cac8380db 100644 +--- a/applets/clipboard/contents/ui/Menu.qml ++++ b/applets/clipboard/contents/ui/Menu.qml +@@ -55,7 +55,7 @@ PlasmaExtras.ScrollArea { + onAction: menu.action(uuid) + } + +- Kirigami.PlaceholderMessage { ++ PlasmaExtras.PlaceholderMessage { + id: emptyHint + + anchors.centerIn: parent +diff --git a/applets/notifications/package/contents/ui/FullRepresentation.qml b/applets/notifications/package/contents/ui/FullRepresentation.qml +index b34dee7af..989cb4341 100644 +--- a/applets/notifications/package/contents/ui/FullRepresentation.qml ++++ b/applets/notifications/package/contents/ui/FullRepresentation.qml +@@ -585,7 +585,7 @@ PlasmaComponents3.Page { + } + } + +- Kirigami.PlaceholderMessage { ++ PlasmaExtras.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (units.largeSpacing * 4) + +-- +2.27.0 + |