diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-05 07:19:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-05 07:19:55 +0000 |
commit | cec8fe0157b0ab37d4919d0f04c131c11f2c9a9e (patch) | |
tree | 7063e9fe9a4205b926c181924c226bcf1112d51e /kicker/libkicker/panelbutton.cpp | |
parent | 80035308b1907d75e7e09be7c8f6e14098edd533 (diff) | |
download | tdebase-cec8fe0157b0ab37d4919d0f04c131c11f2c9a9e.tar.gz tdebase-cec8fe0157b0ab37d4919d0f04c131c11f2c9a9e.zip |
Fix up a few Deep Buttons glitches
Add an option to include the clock in the system tray applet
Majorly enhance the Quick Launch Kicker applet
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1245129 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/libkicker/panelbutton.cpp')
-rw-r--r-- | kicker/libkicker/panelbutton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kicker/libkicker/panelbutton.cpp b/kicker/libkicker/panelbutton.cpp index 1e4edaf7b..f5e35a2ad 100644 --- a/kicker/libkicker/panelbutton.cpp +++ b/kicker/libkicker/panelbutton.cpp @@ -326,7 +326,7 @@ int PanelButton::heightForWidth(int width) const const TQPixmap& PanelButton::labelIcon() const { - if (m_disableHighlighting) + if (m_disableHighlighting || (!KickerSettings::showMouseOverEffects())) return m_icon; else return m_highlight ? m_iconh : m_icon; |