2
0
Эх сурвалжийг харах

Fix MouseEvent.ToString() (#3068)

Andrey Akinshin 1 жил өмнө
parent
commit
7822cd8100

+ 2 - 2
Terminal.Gui/Input/Mouse.cs

@@ -180,6 +180,6 @@ public class MouseEvent {
 	/// <returns>A <see cref="T:System.String"/> that represents the current <see cref="MouseEvent"/>.</returns>
 	public override string ToString ()
 	{
-		return $"({X},{Y}:{Flags}";
+		return $"({X},{Y}):{Flags}";
 	}
-}
+}