Browse Source

Fixes #1053. ProcessMouseEvent seems to initialize MouseEvent incorrectly.

BDisp 4 years ago
parent
commit
708fd8a876
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Terminal.Gui/Core/Application.cs

+ 2 - 2
Terminal.Gui/Core/Application.cs

@@ -438,8 +438,8 @@ namespace Terminal.Gui {
 					X = rx,
 					X = rx,
 					Y = ry,
 					Y = ry,
 					Flags = me.Flags,
 					Flags = me.Flags,
-					OfX = rx,
-					OfY = ry,
+					OfX = 0,
+					OfY = 0,
 					View = view
 					View = view
 				};
 				};