diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-29 14:51:15 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-29 14:51:39 +0100 |
commit | d16a958edd9d00c11113effaa768ca2f034a3f10 (patch) | |
tree | b6a335beabd01d65cbb07d905ae3f7e8e59762e5 /kde-plasma/plasma-desktop/files | |
parent | profiles/prefix/darwin/macos: fix libgcrypt compilation when using Clang (diff) | |
download | gentoo-d16a958edd9d00c11113effaa768ca2f034a3f10.tar.gz gentoo-d16a958edd9d00c11113effaa768ca2f034a3f10.tar.bz2 gentoo-d16a958edd9d00c11113effaa768ca2f034a3f10.zip |
kde-plasma/plasma-desktop: 5.14.4.1 version bump
Same as 5.14.4-r1, but upstream's respin in place of 5.14.4 tarball
forces our hand.
See also:
https://community.kde.org/Plasma/5.14_Errata
https://mail.kde.org/pipermail/release-team/2018-November/011159.html
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-desktop/files')
-rw-r--r-- | kde-plasma/plasma-desktop/files/plasma-desktop-5.14.4-taskbar-crash.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/kde-plasma/plasma-desktop/files/plasma-desktop-5.14.4-taskbar-crash.patch b/kde-plasma/plasma-desktop/files/plasma-desktop-5.14.4-taskbar-crash.patch deleted file mode 100644 index 1a0a8957ef07..000000000000 --- a/kde-plasma/plasma-desktop/files/plasma-desktop-5.14.4-taskbar-crash.patch +++ /dev/null @@ -1,39 +0,0 @@ -From ed34cc5f181e61d1fc98872866c5d7300a90af86 Mon Sep 17 00:00:00 2001 -From: Eike Hein <hein@kde.org> -Date: Thu, 29 Nov 2018 00:22:17 +0900 -Subject: [PATCH] Fix group popup dialog - -Summary: -Fixes regression introduced with ab26ebb18b74: That diff contained -a change unrelated to the original submission, swapping a || out for -&& in response to a review note. This turns out to have broken things. - -BUG:401508 - -Reviewers: davidedmundson - -Subscribers: plasma-devel - -Tags: #plasma - -Differential Revision: https://phabricator.kde.org/D17219 ---- - applets/taskmanager/package/contents/ui/GroupDialog.qml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/applets/taskmanager/package/contents/ui/GroupDialog.qml b/applets/taskmanager/package/contents/ui/GroupDialog.qml -index 6f592756..28238dce 100644 ---- a/applets/taskmanager/package/contents/ui/GroupDialog.qml -+++ b/applets/taskmanager/package/contents/ui/GroupDialog.qml -@@ -262,7 +262,7 @@ PlasmaCore.Dialog { - // Setting VisualDataModel.rootIndex drops groupRepeater.count to 0 - // before the actual row count. updateSize is therefore invoked twice; - // only update size once the repeater count matches the model role. -- } else if (!groupRepeater.aboutToPopulate && visualParent.childCount == groupRepeater.count) { -+ } else if (!groupRepeater.aboutToPopulate || visualParent.childCount == groupRepeater.count) { - var task; - var maxWidth = 0; - var maxHeight = 0; --- -2.19.2 - |