From cfb0aae5537d63c48507dba0c4b53fcfc6331ce5 Mon Sep 17 00:00:00 2001 From: chani Date: Thu, 5 Mar 2009 22:11:21 +0000 Subject: [PATCH] make these shortcuts work on the desktop again git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdebase@935672 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- workspace/plasma/shells/desktop/desktopview.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/workspace/plasma/shells/desktop/desktopview.cpp b/workspace/plasma/shells/desktop/desktopview.cpp index 2a1d61dfe8..b95277630a 100644 --- a/workspace/plasma/shells/desktop/desktopview.cpp +++ b/workspace/plasma/shells/desktop/desktopview.cpp @@ -83,12 +83,10 @@ DesktopView::DesktopView(Plasma::Containment *containment, int id, QWidget *pare } //FIXME should we have next/prev or up/down/left/right or what? KAction *action = new KAction(i18n("Next Activity"), this); - action->setShortcutContext(Qt::WidgetWithChildrenShortcut); action->setShortcut(QKeySequence(Qt::ALT + Qt::Key_D, Qt::Key_Right)); connect(action, SIGNAL(triggered()), this, SLOT(nextContainment())); addAction(action); action = new KAction(i18n("Previous Activity"), this); - action->setShortcutContext(Qt::WidgetWithChildrenShortcut); action->setShortcut(QKeySequence(Qt::ALT + Qt::Key_D, Qt::Key_Left)); connect(action, SIGNAL(triggered()), this, SLOT(previousContainment())); addAction(action); -- 2.11.4.GIT