From 86807971302304ce250807e50996a25efb043777 Mon Sep 17 00:00:00 2001 From: Riccardo Iaconelli Date: Sun, 24 Feb 2008 13:35:30 +0000 Subject: [PATCH] Make the desktop toolbox ignore zoom-ins and zoom-outs, and therefore always remain visible and clickable. Fix celeste's "bug". :-) Shall it always remain on the top-right corner? I'll let the panel-devel folks decide. Signed-off-by: Riccardo Iaconelli CCMAIL: panel-devel@kde.org svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=778736 --- desktoptoolbox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktoptoolbox.cpp b/desktoptoolbox.cpp index 3798cf6ee..49dc3cb72 100644 --- a/desktoptoolbox.cpp +++ b/desktoptoolbox.cpp @@ -87,6 +87,7 @@ DesktopToolbox::DesktopToolbox(QGraphicsItem *parent) setZValue(10000000); setFlag(ItemClipsToShape, true); setFlag(ItemClipsChildrenToShape, false); + setFlag(ItemIgnoresTransformations, true); connect(Plasma::Phase::self(), SIGNAL(movementComplete(QGraphicsItem*)), this, SLOT(toolMoved(QGraphicsItem*))); }