aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gpgwin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index ac36b85..6d42e24 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -302,12 +302,12 @@ void GpgWin::createActions()
/** Key-Shortcuts for Tab-Switchung-Action
*/
switchTabUpAct = new QAction(this);
- switchTabUpAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Tab));
+ switchTabUpAct->setShortcut(QKeySequence::NextChild);
connect(switchTabUpAct, SIGNAL(triggered()), edit, SLOT(switchTabUp()));
this->addAction(switchTabUpAct);
switchTabDownAct = new QAction(this);
- switchTabDownAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Shift+ Qt::Key_Tab));
+ switchTabDownAct->setShortcut(QKeySequence::PreviousChild);
connect(switchTabDownAct, SIGNAL(triggered()), edit, SLOT(switchTabDown()));
this->addAction(switchTabDownAct);
}