summaryrefslogtreecommitdiff
path: root/src/tabbar.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-03-05 12:41:28 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-03-05 12:41:28 +0100
commit384b3f1d066443b67b9d3d6389846a44e976876f (patch)
treeb32cd9e54a5670dca86d47a8a8bce425f2241022 /src/tabbar.cpp
parentStupid me, committed wrong change. Sorry :) (diff)
downloadrekonq-384b3f1d066443b67b9d3d6389846a44e976876f.tar.xz
Ok, things seem working well now.
Anyway, it needs some days of testing..
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r--src/tabbar.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index 43432ec4..25351ac0 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -150,15 +150,15 @@ void TabBar::showTabPreview(int tab)
{
MainView *mv = qobject_cast<MainView *>(parent());
- WebTab *view = mv->webTab(tab);
- WebTab *currentView = mv->webTab(currentIndex());
+ WebTab *indexedTab = mv->webTab(tab);
+ WebTab *currentTab = mv->webTab(currentIndex());
// check if view && currentView exist before using them :)
- if(!currentView || !view)
+ if(!currentTab || !indexedTab)
return;
int w = tabSizeHint(tab).width();
- int h = w * ( (0.0 + currentView->height()) / currentView->width() );
+ int h = w * ( (0.0 + currentTab->height()) / currentTab->width() );
//delete previous tab preview
delete m_previewPopup.data();
@@ -170,9 +170,7 @@ void TabBar::showTabPreview(int tab)
m_previewPopup.data()->setFixedSize(w, h);
QLabel *l = new QLabel();
- QWebPage copyPage(view->page());
- copyPage.setViewportSize(currentView->page()->viewportSize());
- l->setPixmap(WebSnap::renderPreview(copyPage, w, h));
+ l->setPixmap( WebSnap::renderPreview( *indexedTab->page() , w, h) );
m_previewPopup.data()->setView(l);
m_previewPopup.data()->layout()->setAlignment(Qt::AlignTop);