From e2cf406ade20bb599c39397e2c9e6b9a4f8430d4 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 20 Jan 2019 17:36:59 +0200 Subject: [PATCH] faulty object name --- containment/package/contents/ui/applet/AppletItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containment/package/contents/ui/applet/AppletItem.qml b/containment/package/contents/ui/applet/AppletItem.qml index ee1ba1f30..7a70c4dc6 100644 --- a/containment/package/contents/ui/applet/AppletItem.qml +++ b/containment/package/contents/ui/applet/AppletItem.qml @@ -135,7 +135,7 @@ Item { //unfortunately for other applets there is no other way to activate them yet //for example the icon-only applets var choords = mapToItem(appletItem.appletWrapper, mouse.x, mouse.y); - if (choords.x<0 || choords.y<0 || choords.x>=container.appletWrapper.width || choords.y>=appletItem.appletWrapper.height) { + if (choords.x<0 || choords.y<0 || choords.x>=appletItem.appletWrapper.width || choords.y>=appletItem.appletWrapper.height) { latteView.toggleAppletExpanded(applet.id); } }