diff --git a/effects/presentwindows.cpp b/effects/presentwindows.cpp index d5b39cd432..db24e08729 100644 --- a/effects/presentwindows.cpp +++ b/effects/presentwindows.cpp @@ -55,11 +55,11 @@ PresentWindowsEffect::PresentWindowsEffect() KActionCollection* actionCollection = new KActionCollection( this ); KAction* a = (KAction*)actionCollection->addAction( "Expose" ); a->setText( i18n("Toggle Expose Effect" )); - a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10)); + a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F9)); connect(a, SIGNAL(triggered(bool)), this, SLOT(toggleActive())); KAction* b = (KAction*)actionCollection->addAction( "ExposeAll" ); b->setText( i18n("Toggle Expose effect (incl other desktops)" )); - b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F11)); + b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10)); connect(b, SIGNAL(triggered(bool)), this, SLOT(toggleActiveAllDesktops())); borderActivate = (ElectricBorder)conf.readEntry("BorderActivate", (int)ElectricNone); diff --git a/effects/presentwindows_config.cpp b/effects/presentwindows_config.cpp index 257ded3711..d9a75aa444 100644 --- a/effects/presentwindows_config.cpp +++ b/effects/presentwindows_config.cpp @@ -70,10 +70,10 @@ PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QV KActionCollection* actionCollection = new KActionCollection( this ); KAction* a = (KAction*)actionCollection->addAction( "Expose" ); a->setText( i18n("Toggle Expose Effect" )); - a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10)); + a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F9)); KAction* b = (KAction*)actionCollection->addAction( "ExposeAll" ); b->setText( i18n("Toggle Expose effect (incl other desktops)" )); - b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F11)); + b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10)); mShortcutEditor = new KShortcutsEditor(actionCollection, this, KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed); connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));