widgets: unset cursor rather than setting arrow

This commit is contained in:
itsmattkc
2022-05-12 13:39:59 -07:00
parent 22bd9f4eec
commit 18d10f6c8d
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -189,7 +189,11 @@ void SeekableWidget::mouseMoveEvent(QMouseEvent *event)
}
} else if (timeline_points_) {
// Look for resize points
setCursor(FindResizeHandle(event) ? Qt::SizeHorCursor : Qt::ArrowCursor);
if (FindResizeHandle(event)) {
setCursor(Qt::SizeHorCursor);
} else {
unsetCursor();
}
}
}