diff options
author | Dimitrios Christidis <dchristidis@ceid.upatras.gr> | 2013-02-12 13:53:24 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-02-12 15:56:08 +0100 |
commit | def0dd21bccf3c37f5621da974beacccefd32202 (patch) | |
tree | e42266a0b4722d2b57944365471785b4ad1819a4 | |
parent | SVN_SILENT improve msgctxt (diff) | |
download | rekonq-def0dd21bccf3c37f5621da974beacccefd32202.tar.xz |
Add support for numpad Enter in find.
BUG: 310164
REVIEW: 108918
Signed-off-by: Andrea Diamantini <adjam7@gmail.com>
-rw-r--r-- | src/webwindow/findbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webwindow/findbar.cpp b/src/webwindow/findbar.cpp index 6bf9ac0d..5b18b052 100644 --- a/src/webwindow/findbar.cpp +++ b/src/webwindow/findbar.cpp @@ -115,7 +115,7 @@ FindBar::FindBar(QWidget *parent) void FindBar::keyPressEvent(QKeyEvent *event) { - if (event->key() == Qt::Key_Return) + if (event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) { if (event->modifiers() == Qt::ShiftModifier) { |