From c384d0f885fefefa09eb6cc75bfc8c1ecd08a666 Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Mon, 16 Apr 2012 09:43:17 +0800 Subject: [PATCH] Set the default shortcut for 'edit-clear-history' as Ctrl+Shift+K, again This has previsouly done for bug 282593 in commit dad64e67, but it is reverted accidently by me in commit 08de49da. --- src/SessionController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SessionController.cpp b/src/SessionController.cpp index f4cfb7189..fd23e0b49 100644 --- a/src/SessionController.cpp +++ b/src/SessionController.cpp @@ -487,7 +487,7 @@ void SessionController::setupCommonActions() action = collection->addAction("clear-history-and-reset", this, SLOT(clearHistoryAndReset())); action->setText(i18n("Clear Scrollback and Reset")); action->setIcon(KIcon("edit-clear-history")); - action->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_X)); + action->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_K)); // Profile Options action = collection->addAction("edit-current-profile", this, SLOT(editCurrentProfile()));