1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 10:05:46 -05:00

Prevent popup menu when scrolling tables

This commit is contained in:
Jon Beniston 2023-11-14 11:37:04 +00:00
parent fe12d7f875
commit c27dc71860

View File

@ -48,9 +48,13 @@ bool TableTapAndHold::eventFilter(QObject *obj, QEvent *event)
if (vHeader) { if (vHeader) {
point.setX(point.x() - vHeader->width()); point.setX(point.x() - vHeader->width());
} }
QSize size = m_table->viewport()->size();
if ((point.x() >= 0) && (point.x() < size.width()) && (point.y() >= 0) && (point.y() < size.height()))
{
emit tapAndHold(point); emit tapAndHold(point);
return true; return true;
} }
} }
}
return QObject::eventFilter(obj, event); return QObject::eventFilter(obj, event);
} }