From 181b30316c83bb1f2c917134511c7e6b0c32de2d Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Fri, 1 Jul 2011 11:06:00 +0200 Subject: [PATCH] Don't show different news item while hovering mouse over it Change-Id: I585a8aca2cfa689d3c5ce324c8330fb4c0bd7fef Reviewed-on: http://codereview.qt.nokia.com/994 Reviewed-by: Qt Sanity Bot Reviewed-by: Daniel Molkentin --- share/qtcreator/welcomescreen/widgets/NewsListing.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/qtcreator/welcomescreen/widgets/NewsListing.qml b/share/qtcreator/welcomescreen/widgets/NewsListing.qml index 14fa94030ee..392df8b6a26 100644 --- a/share/qtcreator/welcomescreen/widgets/NewsListing.qml +++ b/share/qtcreator/welcomescreen/widgets/NewsListing.qml @@ -117,6 +117,8 @@ Item { anchors.fill: column; onClicked: Qt.openUrlExternally(link); hoverEnabled: true; + onEntered: timer.stop() + onExited: timer.restart() id: mouseArea }