forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-plasma/kwin: add missing patch for 5.91.0
Signed-off-by: Alfred Wingate <[email protected]> Closes: gentoo#34527 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
b855024
commit 580d247
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
kde-plasma/kwin/files/kwin-5.90.90-gstreamer-optional.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 3b851958984a2028780ee6078004690ca2b0723b Mon Sep 17 00:00:00 2001 | ||
From: Andreas Sturmlechner <[email protected]> | ||
Date: Tue, 6 Aug 2019 22:36:44 +0200 | ||
Subject: [PATCH] Disable the effect video button if gstreamer is missing | ||
|
||
--- | ||
src/kcms/effects/ui/Effect.qml | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/kcms/effects/ui/Effect.qml b/src/kcms/effects/ui/Effect.qml | ||
index e4a7daca7e..23d32e63a1 100644 | ||
--- a/src/kcms/effects/ui/Effect.qml | ||
+++ b/src/kcms/effects/ui/Effect.qml | ||
@@ -120,7 +120,7 @@ QQC2.ItemDelegate { | ||
} | ||
|
||
QQC2.ToolButton { | ||
- visible: model.VideoRole.toString() !== "" | ||
+ visible: false | ||
icon.name: "videoclip-amarok" | ||
text: i18nc("@info:tooltip", "Show/Hide Video") | ||
display: QQC2.AbstractButton.IconOnly | ||
-- | ||
2.43.0 | ||
|