summaryrefslogtreecommitdiff
path: root/x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-07-01 04:34:48 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-07-01 04:34:48 +0100
commitf9a445729120f328139aad8832c6c9ea056d9c1b (patch)
tree41fdddb15ee663954249cd46b6825866c8bb4696 /x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch
parent233e52099f9e6aabadb53480dd52dc33e80b4f10 (diff)
x11-misc/sddm : version bump
Diffstat (limited to 'x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch')
-rw-r--r--x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch b/x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch
deleted file mode 100644
index 70efa284..00000000
--- a/x11-misc/sddm/files/sddm-0.18.1-drop-wayland-suffix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 9a440ba5917ff93c6a78726380c6267d91c13f19 Mon Sep 17 00:00:00 2001
-From: Alex <alex.shaw.as@gmail.com>
-Date: Mon, 30 Sep 2019 16:50:16 -0400
-Subject: [PATCH] Prevent duplicate session name.
-
-Several desktop sessions (e.g. KDE Plasma) already include the string " (Wayland)" in the session name. When this happens, the session name displayed to the user is "Plasma (Wayland) (Wayland)". This change makes it so that only "Plasma (Wayland)" will be displayed.
-
-(cherry picked from commit f9a0648ff3f841b68a07c139c3540b9e75bfd279)
----
- src/common/Session.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/common/Session.cpp b/src/common/Session.cpp
-index aa4dad3..923ecd4 100644
---- a/src/common/Session.cpp
-+++ b/src/common/Session.cpp
-@@ -169,7 +169,7 @@ namespace SDDM {
-
- if (line.startsWith(QLatin1String("Name="))) {
- if (type == WaylandSession)
-- m_displayName = QObject::tr("%1 (Wayland)").arg(line.mid(5));
-+ m_displayName = QObject::tr("%1").arg(line.mid(5));
- else
- m_displayName = line.mid(5);
- }
---
-2.38.1
-