Don't update map hover coordinates on mouse-button down

right click drag on map should do nothing, and now does nothing
This commit is contained in:
Kurt 2020-05-11 23:18:07 -07:00
parent 902dd90dc9
commit 4792d675eb

View File

@ -621,7 +621,7 @@ private void PB_Map_MouseMove(object sender, MouseEventArgs e)
{
ClickMapAt(e, false);
}
else
else if (e.Button == MouseButtons.None)
{
View.GetCursorCoordinates(e.X, e.Y, out var x, out var y);
SetCoordinateText(x, y);