summaryrefslogtreecommitdiff
path: root/user/plasma-workspace/backport2.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2022-06-09 23:04:16 -0500
committerZach van Rijn <me@zv.io>2022-10-21 18:34:01 -0500
commit3f86cdce3fdc695f68d9509bcee57892292c3b5d (patch)
treedc5e5a7e4e60092d82583b799bf05c28ca5ba6ae /user/plasma-workspace/backport2.patch
parent1a8ec08761b79fd68225f69070c875e162a826bc (diff)
downloadpackages-3f86cdce3fdc695f68d9509bcee57892292c3b5d.tar.gz
packages-3f86cdce3fdc695f68d9509bcee57892292c3b5d.tar.bz2
packages-3f86cdce3fdc695f68d9509bcee57892292c3b5d.tar.xz
packages-3f86cdce3fdc695f68d9509bcee57892292c3b5d.zip
user/[KDE packages]: Backport requests from upstream
Diffstat (limited to 'user/plasma-workspace/backport2.patch')
-rw-r--r--user/plasma-workspace/backport2.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/user/plasma-workspace/backport2.patch b/user/plasma-workspace/backport2.patch
new file mode 100644
index 000000000..352bed917
--- /dev/null
+++ b/user/plasma-workspace/backport2.patch
@@ -0,0 +1,41 @@
+From f77b7284e39b14b0e9a8b4d2b77c0b93b2c9ea59 Mon Sep 17 00:00:00 2001
+From: Fushan Wen <qydwhotmail@gmail.com>
+Date: Mon, 16 May 2022 16:18:00 +0800
+Subject: [PATCH] kcms/desktoptheme: find metadata.json when loading
+ ThemesModel
+
+Before this commit ThemesModel only finds metadata.desktop, but after
+KF5.94, the default theme metadata files have been ported to json format.
+
+BUG: 453830
+
+
+(cherry picked from commit 10aa9bb8dca91e92e3009ed57613d43d610da63e)
+---
+ kcms/desktoptheme/themesmodel.cpp | 10 +++++++++-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/kcms/desktoptheme/themesmodel.cpp b/kcms/desktoptheme/themesmodel.cpp
+index 6f0ecf4e3..296951742 100644
+--- a/kcms/desktoptheme/themesmodel.cpp
++++ b/kcms/desktoptheme/themesmodel.cpp
+@@ -155,7 +155,15 @@ void ThemesModel::load()
+ const QDir cd(ppath);
+ const QStringList &entries = cd.entryList(QDir::Dirs | QDir::Hidden | QDir::NoDotAndDotDot);
+ for (const QString &pack : entries) {
+- const QString _metadata = ppath + QLatin1Char('/') + pack + QStringLiteral("/metadata.desktop");
++ const QString prefix = QStringLiteral("%1%2%3%4metadata.").arg(ppath, QDir::separator(), pack, QDir::separator());
++
++ QString _metadata = QStringLiteral("%1json").arg(prefix);
++ if (QFile::exists(_metadata)) {
++ themes << _metadata;
++ continue;
++ }
++
++ _metadata = QStringLiteral("%1desktop").arg(prefix);
+ if (QFile::exists(_metadata)) {
+ themes << _metadata;
+ }
+--
+GitLab
+