summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorRohan Garg <rohangarg@kubuntu.org>2011-01-09 02:37:24 +0530
committerRohan Garg <shadeslayer@saphira.(none)>2011-01-09 02:38:54 +0530
commitde39729f4e3864aec6c0366ac72ca5f1228d60d1 (patch)
treeaafced7adc1a1e8084da9ae1fc98dc0912ae7048 /src/mainwindow.cpp
parentMulti-scroll cursors doesn't appear when the page does not have scroll bars, ... (diff)
downloadrekonq-de39729f4e3864aec6c0366ac72ca5f1228d60d1.tar.xz
Use Escape shortcut to stop web loading
Thanks to Furkan Üzümcü Review Board request : http://git.reviewboard.kde.org/r/100322/
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 599295f7..963d405e 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::CTRL | Qt::Key_Period));
+ a->setShortcut(KShortcut(Qt::Key_Escape));
actionCollection()->addAction(QL1S("stop"), a);
connect(a, SIGNAL(triggered(bool)), m_view, SLOT(webStop()));