Commit a3838026 authored by Tomaz Canabrava's avatar Tomaz Canabrava

Remove a Typo bug : onEntered: { __forceHoverOff; false; hoverTimer.start() }

instead of         onEntered: { __forceHoverOff = false; hoverTimer.start() }
Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
parent 93fe7252
......@@ -33,8 +33,8 @@ Button {
__lastGlobalMouseX = ScreenTools.mouseX()
__lastGlobalMouseY = ScreenTools.mouseY()
}
onEntered: { __forceHoverOff; false; hoverTimer.start() }
onExited: { __forceHoverOff; false; hoverTimer.stop() }
onEntered: { __forceHoverOff = false; hoverTimer.start() }
onExited: { __forceHoverOff = false; hoverTimer.stop() }
}
Timer {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment