From f7418e262b81dfcdad8d690b2ff7df0d4ffd9df5 Mon Sep 17 00:00:00 2001 From: Yoann Laissus Date: Sun, 5 Aug 2012 16:48:38 +0200 Subject: Fix the tab preview ratio. We want the web page ratio, not the window ratio. --- src/tabbar.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/tabbar.cpp') diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 2f0803f8..e3b44d53 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -195,10 +195,13 @@ void TabBar::showTabPreview() if (indexedTab->isPageLoading()) return; - int w = (mv->sizeHint().width() / baseWidthDivisor); + // Make sure the hovered webtab match the current size + // Only the active one is updated by window resize events + indexedTab->resize(currentTab->size()); m_previewPopup = new TabPreviewPopup(indexedTab , this); + int w = (mv->sizeHint().width() / baseWidthDivisor); int tabBarWidth = mv->size().width(); int leftIndex = tabRect(m_currentTabPreviewIndex).x() + (tabRect(m_currentTabPreviewIndex).width() - w) / 2; -- cgit v1.2.1