diff options
author | Wolfgang Müller | 2024-10-13 16:50:59 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-10-13 16:50:59 +0200 |
commit | a85974c177a9bde6f87c1facf7bd1472f4e13f27 (patch) | |
tree | a3d8846bc9c7cb30e61fb998b2dcfdfdc849a2ab /desktop-plasma/patches | |
parent | a5a14c8b0e181aa14e194125d71173ed15e95539 (diff) | |
download | portage-roles-a85974c177a9bde6f87c1facf7bd1472f4e13f27.tar.gz |
desktop-plasma: Add patch for libplasma fixing certain plasmoids
Diffstat (limited to 'desktop-plasma/patches')
-rw-r--r-- | desktop-plasma/patches/kde-plasma/libplasma-6.1.5/0001-PlasmaExtras-PlaceholderMessage-Relax-list-type-to-T.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/desktop-plasma/patches/kde-plasma/libplasma-6.1.5/0001-PlasmaExtras-PlaceholderMessage-Relax-list-type-to-T.patch b/desktop-plasma/patches/kde-plasma/libplasma-6.1.5/0001-PlasmaExtras-PlaceholderMessage-Relax-list-type-to-T.patch new file mode 100644 index 0000000..bab012b --- /dev/null +++ b/desktop-plasma/patches/kde-plasma/libplasma-6.1.5/0001-PlasmaExtras-PlaceholderMessage-Relax-list-type-to-T.patch @@ -0,0 +1,37 @@ +From d91e9a330eacf673c6c3e18ae218e3d1fb81f7fe Mon Sep 17 00:00:00 2001 +From: ivan tkachenko <me@ratijas.tk> +Date: Sat, 15 Jun 2024 02:36:26 +0600 +Subject: [PATCH] PlasmaExtras/PlaceholderMessage: Relax list type to T.Action + +Properties should be using Templates version for maximum flexibility. + +CCBUG: 487904 +--- + .../plasmaextracomponents/qml/PlaceholderMessage.qml | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/declarativeimports/plasmaextracomponents/qml/PlaceholderMessage.qml b/src/declarativeimports/plasmaextracomponents/qml/PlaceholderMessage.qml +index 0e227f08a..b23b529c0 100644 +--- a/src/declarativeimports/plasmaextracomponents/qml/PlaceholderMessage.qml ++++ b/src/declarativeimports/plasmaextracomponents/qml/PlaceholderMessage.qml +@@ -6,7 +6,7 @@ + + import QtQuick + import QtQuick.Layouts +-import QtQuick.Controls as QQC2 ++import QtQuick.Templates as T + + import org.kde.plasma.components as PlasmaComponents3 + import org.kde.kirigami as Kirigami +@@ -214,7 +214,7 @@ ColumnLayout { + * + * @since 5.72 + */ +- property QQC2.Action helpfulAction ++ property T.Action helpfulAction + + spacing: Kirigami.Units.gridUnit + +-- +2.46.0 + |