summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-01-09 11:44:00 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-01-09 11:44:00 +0100
commitb880bf54d340554b2940bd29909a94031f9abbde (patch)
treed971e84229d6638a8daadc9419ecd694a54b36f0 /src
parentUpdate the completion list when the user switches search engine on the fly. (diff)
downloadrekonq-b880bf54d340554b2940bd29909a94031f9abbde.tar.xz
Revert "Use Escape shortcut to stop web loading"
This reverts commit de39729f4e3864aec6c0366ac72ca5f1228d60d1. It actually has problems with urlbar behavior. Needs a little more work..
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 963d405e..599295f7 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -388,7 +388,7 @@ void MainWindow::setupActions()
a->setShortcut(reloadShortcut);
a = new KAction(KIcon("process-stop"), i18n("&Stop"), this);
- a->setShortcut(KShortcut(Qt::Key_Escape));
+ a->setShortcut(KShortcut(Qt::CTRL | Qt::Key_Period));
actionCollection()->addAction(QL1S("stop"), a);
connect(a, SIGNAL(triggered(bool)), m_view, SLOT(webStop()));