diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2010-06-22 18:32:14 +0200 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2010-06-22 18:32:14 +0200 |
commit | 94b9d215c37b6e7b5b539b48dcfe72f297a27973 (patch) | |
tree | dd75109adcc46124ea3c50479a91167c2e98853d /src/tabbar.cpp | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-94b9d215c37b6e7b5b539b48dcfe72f297a27973.tar.xz |
fix (almost) empty area in the previews
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r-- | src/tabbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp index f3584eed..e8066715 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -181,7 +181,7 @@ void TabBar::showTabPreview() m_previewPopup.data()->setFixedSize(w, h); QLabel *l = new QLabel(); - l->setPixmap( WebSnap::renderPreview(*indexedTab->page(), w, h, false) ); + l->setPixmap( WebSnap::renderTabPreview(*indexedTab->page(), w, h) ); m_previewPopup.data()->setView(l); m_previewPopup.data()->layout()->setAlignment(Qt::AlignTop); |