diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-10-23 12:16:38 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-10-23 18:46:25 +0200 |
commit | 04b7a5abc61721150cbdaefb391c4365903d11a1 (patch) | |
tree | 17167a551e6bc11df15961a74f7e0e1dbbb04cf6 /kde-plasma/kwin/files | |
parent | app-crypt/argon2: Use optimized code on x86 only (diff) | |
download | gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.tar.gz gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.tar.bz2 gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.zip |
kde-plasma: KDE Plasma 5.17.1 version bump
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/kwin/files')
-rw-r--r-- | kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch b/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch new file mode 100644 index 000000000000..08a472ad5561 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch @@ -0,0 +1,25 @@ +From b5b277996322b0a37ed8a9443724183b82800e81 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner <andreas.sturmlechner@gmail.com> +Date: Tue, 6 Aug 2019 22:36:44 +0200 +Subject: [PATCH] Disable the effect video button if gstreamer is missing + +--- + kcmkwin/kwineffects/package/contents/ui/Effect.qml | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/kcmkwin/kwineffects/package/contents/ui/Effect.qml b/kcmkwin/kwineffects/package/contents/ui/Effect.qml +index 71dbc5935..86ddf40b3 100644 +--- a/kcmkwin/kwineffects/package/contents/ui/Effect.qml ++++ b/kcmkwin/kwineffects/package/contents/ui/Effect.qml +@@ -112,7 +112,7 @@ Kirigami.SwipeListItem { + } + actions: [ + Kirigami.Action { +- visible: model.VideoRole.toString() !== "" ++ visible: false + icon.name: "videoclip-amarok" + tooltip: i18nc("@info:tooltip", "Show/Hide Video") + onTriggered: videoItem.showHide() +-- +2.22.0 + |