Make crosshair follow view movement when using pan/zoom gestures.

This commit is contained in:
Alex Shvartzkop 2024-06-09 18:46:36 +03:00
parent fb3730a9c0
commit 7bca6cdea7
1 changed files with 3 additions and 2 deletions

View File

@ -640,7 +640,7 @@ void WX_VIEW_CONTROLS::onZoomGesture( wxZoomGestureEvent& aEvent )
m_gestureLastZoomFactor = aEvent.GetZoomFactor();
m_gestureLastPos = evtPos;
m_parentPanel->Refresh();
refreshMouse( true );
}
@ -650,7 +650,8 @@ void WX_VIEW_CONTROLS::onPanGesture( wxPanGestureEvent& aEvent )
VECTOR2D deltaWorld = m_view->ToWorld( screenDelta, false );
m_view->SetCenter( m_view->GetCenter() - deltaWorld );
m_parentPanel->Refresh();
refreshMouse( true );
}