From 5ea3cb88e1c5f56a98dc8c555a9f5c1bd3cba76b Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 6 Mar 2008 20:24:59 +0000 Subject: [PATCH] give us a bit more of a border so faster mouse movements work too, without ruining the whole effect svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=783029 --- desktoptoolbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktoptoolbox.cpp b/desktoptoolbox.cpp index b00086503..0a7a7b033 100644 --- a/desktoptoolbox.cpp +++ b/desktoptoolbox.cpp @@ -161,7 +161,7 @@ void DesktopToolbox::hoverEnterEvent(QGraphicsSceneHoverEvent *event) } QPainterPath path; - int size = m_size + (int)m_animFrame - 5; + int size = m_size + (int)m_animFrame - 15; path.moveTo(m_size*2, 0); path.arcTo(QRectF(m_size * 2 - size, -size, size*2, size*2), 180, 90); path.lineTo(m_size*2, 0);