diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/urlbar/urlbar.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index 821b9ae0..f3d759f7 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -47,6 +47,7 @@ #include "iconmanager.h" #include "favoritewidget.h" #include "searchengine.h" +#include "websnap.h" // KDE Includes #include <KCompletionBox> @@ -744,6 +745,9 @@ void UrlBar::manageFavorites(QPoint pos) titles << _tab->view()->title(); ReKonfig::setPreviewNames(titles); + // also, save a site snapshot + WebSnap *snap = new WebSnap(_tab->url(), this); + updateRightIcons(); } |