summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-02-23 22:23:43 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-02-23 22:23:43 +0100
commitcb5cadbe13e5a868a35ddd8c16612d0991e84d86 (patch)
tree2d410ff1476118f1f1755c3dfed0662e3fbb383e
parentkde-plasma/libksysguard: Drop unused patch (diff)
downloadgentoo-cb5cadbe13e5a868a35ddd8c16612d0991e84d86.tar.gz
gentoo-cb5cadbe13e5a868a35ddd8c16612d0991e84d86.tar.bz2
gentoo-cb5cadbe13e5a868a35ddd8c16612d0991e84d86.zip
kde-plasma/plasma-desktop: Drop unused patch
Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch b/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch
deleted file mode 100644
index 8c7902c0e7dd..000000000000
--- a/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 5550af1fd10dccda80be4586f19e3aa0995be2bc Mon Sep 17 00:00:00 2001
-From: Jan Blackquill <uhhadd@gmail.com>
-Date: Wed, 17 Feb 2021 12:34:15 -0500
-Subject: [PATCH] kcms/keyboard: fix migration
-
-TriState::STATE_ON is 0, while TriState::STATE_OFF is 1.
-We're currently migrating 0 -> disabled, when it should be
-1 -> disabled, * -> enabled.
-
-BUG: 431923
-FIXED-IN: 5.21.1
----
- kcms/keyboard/kcminputrc_migrate_repeat_value.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/kcms/keyboard/kcminputrc_migrate_repeat_value.py b/kcms/keyboard/kcminputrc_migrate_repeat_value.py
-index 1440c570e..bd1667969 100755
---- a/kcms/keyboard/kcminputrc_migrate_repeat_value.py
-+++ b/kcms/keyboard/kcminputrc_migrate_repeat_value.py
-@@ -4,7 +4,7 @@ import sys
- for line in sys.stdin:
- line = line.rstrip()
- print(line, file=sys.stderr)
-- if line.startswith("KeyboardRepeating=0"):
-+ if line.startswith("KeyboardRepeating=1"):
- print("KeyRepeat=nothing")
- elif line.startswith("KeyboardRepeating="):
- print("KeyRepeat=repeat")
---
-GitLab
-