mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-20 23:47:24 -05:00
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:
parent
902dd90dc9
commit
4792d675eb
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user