From 819e1ed51c5e6c29900044b08d9b8ff15e528d04 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Fri, 21 Apr 2017 22:20:09 +0300 Subject: [PATCH] initialize differently the tempScaling --- plasmoid/contents/ui/TaskDelegate.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plasmoid/contents/ui/TaskDelegate.qml b/plasmoid/contents/ui/TaskDelegate.qml index 9dce67217..8a66d6eec 100644 --- a/plasmoid/contents/ui/TaskDelegate.qml +++ b/plasmoid/contents/ui/TaskDelegate.qml @@ -289,8 +289,8 @@ MouseArea{ property bool inTempScaling: (((tempScaleWidth !== 1) || (tempScaleHeight !== 1) ) && (!mainItemContainer.mouseEntered) ) property real mScale: 1 - property real tempScaleWidth: 0 - property real tempScaleHeight: 0 + property real tempScaleWidth: 1 + property real tempScaleHeight: 1 property real scaleWidth: (inTempScaling == true) ? tempScaleWidth : mScale property real scaleHeight: (inTempScaling == true) ? tempScaleHeight : mScale