diff options
author | Rohan Garg <rohangarg@kubuntu.org> | 2011-01-09 02:37:24 +0530 |
---|---|---|
committer | Rohan Garg <shadeslayer@saphira.(none)> | 2011-01-09 02:38:54 +0530 |
commit | de39729f4e3864aec6c0366ac72ca5f1228d60d1 (patch) | |
tree | aafced7adc1a1e8084da9ae1fc98dc0912ae7048 | |
parent | Multi-scroll cursors doesn't appear when the page does not have scroll bars, ... (diff) | |
download | rekonq-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/
-rw-r--r-- | src/mainwindow.cpp | 2 |
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())); |