Reset cursor upon panel resize mouse release event

This commit is contained in:
Nav
2021-10-10 14:19:01 +01:00
parent 4ce850e1d7
commit 1bbf1868f0

View File

@@ -72,6 +72,7 @@ void PanelWidget::mouseReleaseEvent(QMouseEvent* event) {
if (this->resizingActive) {
this->resizingActive = false;
this->resizingOffset = 0;
this->setCursor(Qt::ArrowCursor);
}
}