From c204ad0ce8c9f0e3c15c3c0eb8d098478478dc13 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Mon, 8 May 2017 00:15:52 +0300 Subject: [PATCH] fix #446,fix crash from groupDialog in 5.8 --this situation with libtaskmanager and crashing from groupDialog wrong initialization is also in plasma 5.8... I hope we catch all the cases... --- plasmoid/contents/ui/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plasmoid/contents/ui/main.qml b/plasmoid/contents/ui/main.qml index 39b9c0ea9..05339c94b 100644 --- a/plasmoid/contents/ui/main.qml +++ b/plasmoid/contents/ui/main.qml @@ -494,9 +494,9 @@ Item { //! work only after Plasma 5.9 and frameworks 5.29 //! + added a check for groupDialog also when it is present //! in plasma 5.8 (that was introduced after 5.8.5) - if (Latte.WindowSystem.frameworksVersion >= 335104 || (groupDialog !== undefined)) { + //if (Latte.WindowSystem.frameworksVersion >= 335104 || (groupDialog !== undefined)) { groupDialog = groupDialogGhost; - } + //} } }