1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

[TabPreviews] Immediately hide preview when using mouse wheel in tabbar

This commit is contained in:
nowrep 2013-12-24 00:18:28 +01:00
parent 3bfa8cecaa
commit cf87a9895e

View File

@ -637,6 +637,10 @@ bool TabBar::event(QEvent* event)
hideTabPreview();
break;
case QEvent::Wheel:
hideTabPreview(false);
break;
case QEvent::ToolTip:
if (m_showTabPreviews) {
QHelpEvent* ev = static_cast<QHelpEvent*>(event);