From f57e714b1e5ed497a2762b3bc8c37f1814b31fea Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Fri, 11 Aug 2017 12:50:29 +0300 Subject: [PATCH] fix a glitch for applets --clicking a zoomed applet at the area below it was creating a glitch because of the restore zoom --- containment/package/contents/ui/main.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/containment/package/contents/ui/main.qml b/containment/package/contents/ui/main.qml index 68a810aec..f723d9c7b 100644 --- a/containment/package/contents/ui/main.qml +++ b/containment/package/contents/ui/main.qml @@ -1404,8 +1404,10 @@ DragDrop.DropArea { if (dock.contextMenuIsShown) return; - if (!dock.visibility.containsMouse || (rootMouseArea.containsMouse && !root.editMode) - || !mouseInCanBeHoveredApplet()){ + //! dropped because was creating a glitch when the user was clicking the area + //! underneath the applet until the screen edge and the applet was zoomed + // || (rootMouseArea.containsMouse && !root.editMode) + if (!dock.visibility.containsMouse || !mouseInCanBeHoveredApplet()) { if (enableDirectRenderTimer.running) enableDirectRenderTimer.stop();