User:AaronPeterson/kdesettingsFixes

From KDE TechBase
Revision as of 00:27, 16 July 2010 by AaronPeterson (talk | contribs) (Created page with 'From websvn, the icon plasmoid, this suggests a method to fix it. <code> Plasma::ToolTipManager::self()->unregisterWidget(m_icon); 250 m_icon->setDrawBackgr...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

From websvn, the icon plasmoid, this suggests a method to fix it.

Plasma::ToolTipManager::self()->unregisterWidget(m_icon);

 250              m_icon->setDrawBackground(true);
 251          } else {
 252              //in the panel the icon behaves like a button
 253              connect(m_icon, SIGNAL(clicked()), this, SLOT(openUrl()));
 254              m_icon->setText(QString());
 255              Plasma::ToolTipContent data(m_text, m_genericName, m_icon->icon());
 256              Plasma::ToolTipManager::self()->setContent(m_icon, data);
 257              m_icon->setDrawBackground(false);