diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-04 01:15:36 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-04 01:15:36 +0200 |
commit | 81639de005e218b14876530e0e309b6bb160fd50 (patch) | |
tree | fa19e17f82164c2a6a95017d23035855b0d87ca0 /src/urlbar/completionwidget.cpp | |
parent | Recognize .local & .eu domains. (diff) | |
download | rekonq-81639de005e218b14876530e0e309b6bb160fd50.tar.xz |
Restore autocomplete shortcuts. Or at least, I hope so :)
BUG: 243902
Diffstat (limited to 'src/urlbar/completionwidget.cpp')
-rw-r--r-- | src/urlbar/completionwidget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/urlbar/completionwidget.cpp b/src/urlbar/completionwidget.cpp index a2bf5dbc..be189001 100644 --- a/src/urlbar/completionwidget.cpp +++ b/src/urlbar/completionwidget.cpp @@ -273,6 +273,11 @@ bool CompletionWidget::eventFilter(QObject *obj, QEvent *ev) case Qt::Key_Enter: case Qt::Key_Return: + + // let urlbar handle Return + Modifiers + if(!(kev->modifiers() & Qt::NoModifier)) + return false; + w = qobject_cast<UrlBar *>(parent()); if( _currentIndex == -1) _currentIndex = 0; |