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/urlbar.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/urlbar.cpp')
-rw-r--r-- | src/urlbar/urlbar.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index 25c7b748..7206b5e1 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -263,8 +263,10 @@ void UrlBar::keyPressEvent(QKeyEvent *event) { host += append; url.setHost(host); - setText(url.toString()); } + + // now, load it! + activated(url); } if (event->key() == Qt::Key_Escape) |