SVN commit 883941 by ppenz: minor fix when no desktop effects are enabled M +1 -1 kformattedballoontipdelegate.cpp --- trunk/KDE/kdebase/apps/dolphin/src/kformattedballoontipdelegate.cpp #883940:883941 @@ -111,7 +111,7 @@ QPainterPath KFormattedBalloonTipDelegate::createPath(const KStyleOptionToolTip *option, QRect *contents) const { QPainterPath path; - QRect rect = option->rect.adjusted(0, 0, -1, -1); + QRect rect = option->rect; const qreal radius = 5; path.moveTo(rect.left(), rect.top() + radius);