summaryrefslogtreecommitdiff
path: root/kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch
diff options
context:
space:
mode:
Diffstat (limited to 'kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch')
-rw-r--r--kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch b/kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch
deleted file mode 100644
index 61b981734fa7..000000000000
--- a/kde-plasma/libksysguard/files/libksysguard-5.24.5-fix-missing-selfmade-presets-1.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From b94b0e11f9c0f718f109f37dad8a889301f3a59a Mon Sep 17 00:00:00 2001
-From: Arjen Hiemstra <ahiemstra@heimr.nl>
-Date: Mon, 9 May 2022 19:05:06 +0200
-Subject: [PATCH] Faces: Write preset faceproperties to the right location
-
-When loading presets we expect the faceproperties file to be located in
-"contents/config/" but when writing we are placing it in "contents/"
-which means that custom presets are not loaded properly.
-
-BUG: 450745
-
-
-(cherry picked from commit 05866a594198d8c76814d8cd4eb3e83cc9123c8d)
----
- faces/SensorFaceController.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/faces/SensorFaceController.cpp b/faces/SensorFaceController.cpp
-index d3daa87d..21fb2954 100644
---- a/faces/SensorFaceController.cpp
-+++ b/faces/SensorFaceController.cpp
-@@ -938,8 +938,8 @@ void SensorFaceController::savePreset()
- cg.sync();
-
- QDir subDir(dir.path());
-- subDir.mkdir(QStringLiteral("contents"));
-- KConfig faceConfig(subDir.path() % QStringLiteral("/contents/faceproperties"));
-+ subDir.mkpath(QStringLiteral("contents/config"));
-+ KConfig faceConfig(subDir.path() % QStringLiteral("/contents/config/faceproperties"));
-
- KConfigGroup configGroup(&faceConfig, "Config");
- configGroup.writeEntry(QStringLiteral("totalSensors"), QJsonDocument(totalSensors()).toJson(QJsonDocument::Compact));
---
-GitLab
-