summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-03-04 19:22:12 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-03-05 10:17:09 +0100
commitabf6d60827652a0322588cda11b2eb68256d0420 (patch)
tree2d28654f5672c81acb1543e057943891fb5f5f97 /kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch
parentkde-frameworks/kio: remove unused patch(es) (diff)
downloadgentoo-abf6d60827652a0322588cda11b2eb68256d0420.tar.gz
gentoo-abf6d60827652a0322588cda11b2eb68256d0420.tar.bz2
gentoo-abf6d60827652a0322588cda11b2eb68256d0420.zip
kde-frameworks/kirigami: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch')
-rw-r--r--kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch b/kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch
deleted file mode 100644
index 1a7dd0b98807..000000000000
--- a/kde-frameworks/kirigami/files/kirigami-5.113.0-drawer-actions-accessible.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 31f8fbc0d1c55e0d4af02be309aae5cef29055e7 Mon Sep 17 00:00:00 2001
-From: Volker Krause <vkrause@kde.org>
-Date: Mon, 14 Aug 2023 17:38:20 +0200
-Subject: [PATCH] Make drawer actions accessible
-
-They could previously not be triggered at all, and had no label in
-the global drawer.
----
- src/controls/private/ContextDrawerActionItem.qml | 2 ++
- src/controls/private/GlobalDrawerActionItem.qml | 3 +++
- 2 files changed, 5 insertions(+)
-
-diff --git a/src/controls/private/ContextDrawerActionItem.qml b/src/controls/private/ContextDrawerActionItem.qml
-index 430ff87e6..f5b2ca5c7 100644
---- a/src/controls/private/ContextDrawerActionItem.qml
-+++ b/src/controls/private/ContextDrawerActionItem.qml
-@@ -95,4 +95,6 @@ Kirigami.BasicListItem {
- console.warning("Don't know how to trigger the action")
- }
- }
-+
-+ Accessible.onPressAction: listItem.clicked()
- }
-diff --git a/src/controls/private/GlobalDrawerActionItem.qml b/src/controls/private/GlobalDrawerActionItem.qml
-index 07e63fa38..6d3c5fe35 100644
---- a/src/controls/private/GlobalDrawerActionItem.qml
-+++ b/src/controls/private/GlobalDrawerActionItem.qml
-@@ -177,4 +177,7 @@ Kirigami.AbstractListItem {
-
- Keys.onDownPressed: event => nextItemInFocusChain().focus = true
- Keys.onUpPressed: event => nextItemInFocusChain(false).focus = true
-+
-+ Accessible.onPressAction: listItem.clicked()
-+ Accessible.name: modelData.text
- }
---
-GitLab
-