From dcf39fe34e79f407687a817f5d80a2ff49bfc2a6 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Fri, 28 Nov 2014 19:19:26 +0100 Subject: [PATCH] remove unised active property --- compositor/contents/Compositor.qml | 3 --- 1 file changed, 3 deletions(-) diff --git a/compositor/contents/Compositor.qml b/compositor/contents/Compositor.qml index 3d8581b4..54e2286c 100644 --- a/compositor/contents/Compositor.qml +++ b/compositor/contents/Compositor.qml @@ -168,7 +168,6 @@ Rectangle { MouseArea { id: taskSwitchEdge z: 1000 - property bool active anchors { left: parent.left right: parent.right @@ -178,7 +177,6 @@ Rectangle { enabled: windowsLayout.children.length > 0 property int oldX: 0 onPressed: { - active = true; oldX = mouse.x; } onPositionChanged: { @@ -191,7 +189,6 @@ Rectangle { oldX = mouse.x; } onReleased: { - active = false if (windowsLayout.scale > 0.7) { compositorRoot.state = compositorRoot.currentWindow ? "application" : "homeScreen"; }