diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-01 11:06:00 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-01 11:06:00 +0200 |
commit | 7d53c477afdfb8013a8ae086d577d46e42455615 (patch) | |
tree | f8c922f7158ccb928438c90bb19a1b77bdb52387 | |
parent | Merge commit 'refs/merge-requests/108' of git://gitorious.org/rekonq/mainline... (diff) | |
download | rekonq-7d53c477afdfb8013a8ae086d577d46e42455615.tar.xz |
3 pixels preview's dilemma
Johannes Zellner's patch. Thanks :)
CCMAIL:johannes.zellner@nokia.com
-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 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)); } |