diff options
author | Thomas Murach <asiasuppenesser@gmx.de> | 2011-09-26 17:48:27 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-26 17:48:27 +0200 |
commit | 403c8b527b8d5dbf15eb26c579545c2f83885c9e (patch) | |
tree | c110d1161658fa4b09be41bf985920653a93a0d1 /src/mainview.cpp | |
parent | Revert "Respect the users Download path set in KDE System Settings" (diff) | |
download | rekonq-403c8b527b8d5dbf15eb26c579545c2f83885c9e.tar.xz |
Remove a minor focus glitch on webpage load
It happened when loading a favorite page via shortcut.
It is fixed now :)
REVIEW: 102695
REVIEWED-BY: adjam
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 89c380de..ca604b2c 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -684,6 +684,7 @@ void MainView::loadFavorite(const int index) return; KUrl url = KUrl(urls.at(index - 1)); rApp->loadUrl(url); + currentWebTab()->setFocus(); } |