diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-03-05 18:51:37 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-03-14 05:54:20 +1100 |
commit | 3af30814658ebbd18853da1e8ab9a0329812b286 (patch) | |
tree | bbf15207a0418858a7d88253baaa4afddb908208 /kde-plasma/plasma-desktop/files | |
parent | app-vim/gitgutter: Remove old (diff) | |
download | gentoo-3af30814658ebbd18853da1e8ab9a0329812b286.tar.gz gentoo-3af30814658ebbd18853da1e8ab9a0329812b286.tar.bz2 gentoo-3af30814658ebbd18853da1e8ab9a0329812b286.zip |
kde-plasma/plasma-desktop: Fix task icons w/ >=KF-5.19
Requires kde-frameworks/plasma-5.19.0
Package-Manager: portage-2.2.27
Diffstat (limited to 'kde-plasma/plasma-desktop/files')
-rw-r--r-- | kde-plasma/plasma-desktop/files/plasma-desktop-5.5.5-fix-task-icon.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kde-plasma/plasma-desktop/files/plasma-desktop-5.5.5-fix-task-icon.patch b/kde-plasma/plasma-desktop/files/plasma-desktop-5.5.5-fix-task-icon.patch new file mode 100644 index 000000000000..b885f32fc02b --- /dev/null +++ b/kde-plasma/plasma-desktop/files/plasma-desktop-5.5.5-fix-task-icon.patch @@ -0,0 +1,49 @@ +From: David Rosca <nowrep@gmail.com> +Date: Fri, 19 Feb 2016 15:20:00 +0000 +Subject: TaskManager: Don't use Plasma theme icons in task icon +X-Git-Tag: v5.5.95 +X-Git-Url: http://quickgit.kde.org/?p=plasma-desktop.git&a=commitdiff&h=310cffc34156b094c0c68d5002ecd2d2936ac546 +--- +TaskManager: Don't use Plasma theme icons in task icon + +Summary: +Also disable animation for icon in tooltip (normal Plasma tooltips +no longer have animated icon too). + +BUG: 359387 + +Reviewers: #plasma, hein + +Reviewed By: hein + +Subscribers: plasma-devel + +Projects: #plasma + +Differential Revision: https://phabricator.kde.org/D991 +--- + + +--- a/applets/taskmanager/package/contents/ui/Task.qml ++++ b/applets/taskmanager/package/contents/ui/Task.qml +@@ -293,6 +293,7 @@ + + active: task.containsMouse || task.showingContextMenu + enabled: true ++ usesPlasmaTheme: false + + source: model.DecorationRole + + +--- a/applets/taskmanager/package/contents/ui/ToolTipDelegate.qml ++++ b/applets/taskmanager/package/contents/ui/ToolTipDelegate.qml +@@ -334,6 +334,8 @@ + x: _s + width: units.iconSizes.desktop + height: width ++ animated: false ++ usesPlasmaTheme: false + source: icon + } + } + |