summaryrefslogtreecommitdiffstats
path: root/kicker/applets/launcher/quickbutton.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 18:42:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 18:42:34 +0000
commit4ed6c841d7ef66c27280603f3793ee1607a38713 (patch)
treeee55fc78a226c3723d8d0e832e694b29ab42393a /kicker/applets/launcher/quickbutton.cpp
parentfc1ca4e6f8885ff685b21ff189a357de97c97de6 (diff)
downloadtdebase-4ed6c841d7ef66c27280603f3793ee1607a38713.tar.gz
tdebase-4ed6c841d7ef66c27280603f3793ee1607a38713.zip
Fix kdebase parallel build failure
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1245177 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/applets/launcher/quickbutton.cpp')
-rw-r--r--kicker/applets/launcher/quickbutton.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/kicker/applets/launcher/quickbutton.cpp b/kicker/applets/launcher/quickbutton.cpp
index 088e4a573..58f60715d 100644
--- a/kicker/applets/launcher/quickbutton.cpp
+++ b/kicker/applets/launcher/quickbutton.cpp
@@ -259,9 +259,11 @@ void QuickButton::slotIconChanged(int group)
void QuickButton::launch()
{
- setDown(false);
- update();
- KIconEffect::visualActivate(this, rect());
+ if (!KickerSettings::showDeepButtons()) {
+ setDown(false);
+ update();
+ KIconEffect::visualActivate(this, rect());
+ }
if (_qurl->kurl().url() == "SPECIAL_BUTTON__SHOW_DESKTOP") {
if (isOn()) {
ShowDesktop::the()->showDesktop(TRUE);