Hi,
since a long time of absence, now a fix for a minor bug attached.
The bug appears, if the moving animation of tabs cannot follow the mouse
speed, so other tabs are hovered which leads to the flickering on showing
preview images.
Thanks,
Johannes
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index 1274577..31fa419 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -199,7 +199,7 @@ void TabBar::mouseMoveEvent(QMouseEvent *event)
}
//if found and not the current tab then show tab preview
- if (tab != -1 && tab != currentIndex() && m_currentTabPreview != tab)
+ if (tab != -1 && tab != currentIndex() && m_currentTabPreview != tab && event->buttons() == Qt::NoButton)
{
showTabPreview(tab);
m_currentTabPreview = tab;
_______________________________________________
rekonq mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/rekonq