From kde-commits Tue Jun 23 16:10:50 2009 From: Jure Repinc Date: Tue, 23 Jun 2009 16:10:50 +0000 To: kde-commits Subject: KDE/kdebase/workspace/plasma/applets/quicklaunch Message-Id: <1245773450.883975.5266.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=124577346125659 SVN commit 985877 by repinc: Use the default desktop size of icons in the tooltip instead of the same size as in the widget P.S. While testing this I noticed that Folder View widget doesn't react too well to changing the setting for desktop icon size M +1 -1 quicklaunchIcon.cpp --- trunk/KDE/kdebase/workspace/plasma/applets/quicklaunch/quicklaunchIcon.cpp #985876:985877 @@ -102,7 +102,7 @@ Plasma::ToolTipContent toolTip; toolTip.setMainText(m_text); toolTip.setSubText(m_genericName); - toolTip.setImage(icon().pixmap(m_iconSize)); + toolTip.setImage(icon()); Plasma::ToolTipManager::self()->setContent(this, toolTip); }