diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-06-18 17:22:04 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-06-18 17:22:04 +0200 |
commit | 7800e131b954ef646fb4db073eb9d09a677b09b9 (patch) | |
tree | 7738b84e6e9afc66adb97aba809a19e6d5a36100 /src/tabbar.cpp | |
parent | Adding a "default" encoding option.. (diff) | |
download | rekonq-7800e131b954ef646fb4db073eb9d09a677b09b9.tar.xz |
No more save tab previews as they are everytime computed again..
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 a1bbf2b8..f3584eed 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)); + l->setPixmap( WebSnap::renderPreview(*indexedTab->page(), w, h, false) ); m_previewPopup.data()->setView(l); m_previewPopup.data()->layout()->setAlignment(Qt::AlignTop); |