summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-01 11:06:00 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-01 11:06:00 +0200
commit7d53c477afdfb8013a8ae086d577d46e42455615 (patch)
treef8c922f7158ccb928438c90bb19a1b77bdb52387 /src
parentMerge commit 'refs/merge-requests/108' of git://gitorious.org/rekonq/mainline... (diff)
downloadrekonq-7d53c477afdfb8013a8ae086d577d46e42455615.tar.xz
3 pixels preview's dilemma
Johannes Zellner's patch. Thanks :) CCMAIL:johannes.zellner@nokia.com
Diffstat (limited to 'src')
-rw-r--r--src/tabbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index 0f4e1064..518b1a96 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -176,7 +176,7 @@ void TabBar::showTabPreview(int tab)
m_previewPopup.data()->layout()->setAlignment(Qt::AlignTop);
m_previewPopup.data()->layout()->setMargin(0);
- QPoint pos( tabRect(tab).x() , tabRect(tab).y() + tabRect(tab).height() - 3);
+ QPoint pos( tabRect(tab).x() , tabRect(tab).y() + tabRect(tab).height());
m_previewPopup.data()->show(mapToGlobal(pos));
}