diff options
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) |