summaryrefslogtreecommitdiff
path: root/kde-plasma/plasma-pa/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-10 23:37:47 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-10 23:37:47 +0100
commit6990d0600970cefe6aa2c17668f9028b08d23441 (patch)
treeb106c69cf74dd70e162c879310bdf2fd49a16f6a /kde-plasma/plasma-pa/files
parentc7c8d625ecbe5f95c445995303ed9b0e1f0de507 (diff)
gentoo auto-resync : 10:04:2023 - 23:37:47
Diffstat (limited to 'kde-plasma/plasma-pa/files')
-rw-r--r--kde-plasma/plasma-pa/files/plasma-pa-5.27.3-fix-show-virtual-devices.patch31
-rw-r--r--kde-plasma/plasma-pa/files/plasma-pa-5.27.3-improve-DeviceListItem-sizing.patch67
2 files changed, 0 insertions, 98 deletions
diff --git a/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-fix-show-virtual-devices.patch b/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-fix-show-virtual-devices.patch
deleted file mode 100644
index 042323757028..000000000000
--- a/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-fix-show-virtual-devices.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 1e4d0d567a72d444dff1f90bb9c1712212d6e07e Mon Sep 17 00:00:00 2001
-From: Fushan Wen <qydwhotmail@gmail.com>
-Date: Sat, 18 Mar 2023 16:31:57 +0800
-Subject: [PATCH] applet: add missing function for "Show virtual devices" menu
- item
-
-BUG: 465996
-FIXED-IN: 5.27.4
-(cherry picked from commit 5430caf2483203de5f3047408582bec953aa8946)
----
- applet/contents/ui/main.qml | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/applet/contents/ui/main.qml b/applet/contents/ui/main.qml
-index aa595204..f65ec85d 100644
---- a/applet/contents/ui/main.qml
-+++ b/applet/contents/ui/main.qml
-@@ -754,6 +754,10 @@ Item {
- KQCAddons.KCMShell.openSystemSettings("kcm_pulseaudio");
- }
-
-+ function action_showVirtualDevices() {
-+ Plasmoid.configuration.showVirtualDevices = !Plasmoid.configuration.showVirtualDevices;
-+ }
-+
- Component.onCompleted: {
- MicrophoneIndicator.init();
-
---
-GitLab
-
diff --git a/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-improve-DeviceListItem-sizing.patch b/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-improve-DeviceListItem-sizing.patch
deleted file mode 100644
index b37d08a745fd..000000000000
--- a/kde-plasma/plasma-pa/files/plasma-pa-5.27.3-improve-DeviceListItem-sizing.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From b6715dc950ab5019542f2f7a77e9f2aa4afab9dc Mon Sep 17 00:00:00 2001
-From: Oliver Beard <olib141@outlook.com>
-Date: Tue, 21 Mar 2023 20:19:38 +0000
-Subject: [PATCH] kcm/DeviceListItem: Set width for comboboxes, with correctly
- sized popup
-
-This commit sets a preferred width for the port/profile comboboxes, so that they appear consistent. The full names are visible by opening the combobox, as the popup is now sized to show the full name. It is also ensured that the popup is positioned correctly to not go off the page when wide.
-
-
-(cherry picked from commit 82a276183fac1ca79d7fe2a14d3f19e9a96ba830)
----
- src/kcm/package/contents/ui/DeviceListItem.qml | 18 ++++++++++++++++--
- 1 file changed, 16 insertions(+), 2 deletions(-)
-
-diff --git a/src/kcm/package/contents/ui/DeviceListItem.qml b/src/kcm/package/contents/ui/DeviceListItem.qml
-index 714884c2..09feea71 100644
---- a/src/kcm/package/contents/ui/DeviceListItem.qml
-+++ b/src/kcm/package/contents/ui/DeviceListItem.qml
-@@ -94,7 +94,7 @@ ColumnLayout {
-
- readonly property var ports: Ports
-
-- Layout.minimumWidth: Kirigami.Units.gridUnit * 10
-+ Layout.preferredWidth: Kirigami.Units.gridUnit * 10
- visible: portBox.count > 1
-
- onModelChanged: currentIndex = ActivePortIndex
-@@ -119,6 +119,13 @@ ColumnLayout {
- }
- model = items;
- }
-+
-+ // Ensure the popup is sufficiently wide to list *full* device names
-+ // and is correctly positioned to not go off the page
-+ popup.width: Math.max(implicitWidth, width)
-+ popup.leftMargin: delegate.ListView.view.Layout.leftMargin
-+ popup.rightMargin: delegate.ListView.view.Layout.rightMargin
-+ popup.x: mirrored ? 0 : width - popup.width
- }
-
- Label {
-@@ -133,7 +140,7 @@ ColumnLayout {
-
- readonly property var card: paCardModel.data(paCardModel.indexOfCardNumber(CardIndex), paCardModel.role("PulseObject"))
-
-- Layout.minimumWidth: Kirigami.Units.gridUnit * 12
-+ Layout.preferredWidth: Kirigami.Units.gridUnit * 12
- visible: profileBox.count > 1
- textRole: "description"
-
-@@ -141,6 +148,13 @@ ColumnLayout {
- currentIndex: card ? model.indexOf(card.profiles[card.activeProfileIndex]) : -1
-
- onActivated: index => card.activeProfileIndex = card.profiles.indexOf(model[index])
-+
-+ // Ensure the popup is sufficiently wide to list *full* device names
-+ // and is correctly positioned to not go off the page
-+ popup.width: Math.max(implicitWidth, width)
-+ popup.leftMargin: delegate.ListView.view.Layout.leftMargin
-+ popup.rightMargin: delegate.ListView.view.Layout.rightMargin
-+ popup.x: mirrored ? 0 : width - popup.width
- }
- }
-
---
-GitLab
-