Hi,

I'm not sure if this is due to my Qt/KDE theme, but I'm using the default for 
4.4 and it happens on both of my machines.

If the mousepointer is at the very bottom of the tab item, the preview is 
shown and since the mousepointer is over the preview then, it is hidden again, 
the shown again, .....

I attached a small patch to solve this. I know that it doesn't look that nice 
anymore but the bug is also annoying.

Cheers,
Johannes
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index 0f4e106..518b1a9 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));
 }
 
_______________________________________________
rekonq mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/rekonq

Reply via email to