diff options
Diffstat (limited to 'kicker/applets/launcher/quickbutton.cpp')
-rw-r--r-- | kicker/applets/launcher/quickbutton.cpp | 8 |
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); |