Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexbas committed Apr 10, 2024
1 parent c0d8de5 commit abd9611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/OverlayManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1787,8 +1787,8 @@ bool OverlayManager::eventFilter(QObject *o, QEvent *ev)
if(!isTreeViewDragging())
d->interceptEvent(d->_trackingWidget, ev);
if(isTreeViewDragging()
|| ev->type() == QEvent::MouseButtonRelease
&& QApplication::mouseButtons() == Qt::NoButton)
|| (ev->type() == QEvent::MouseButtonRelease
&& QApplication::mouseButtons() == Qt::NoButton))
{
d->_trackingWidget = nullptr;
if (d->_trackingOverlay == grabber
Expand Down

0 comments on commit abd9611

Please sign in to comment.