Ver Fonte

Fix MouseEvent.ToString() (#3068)

Andrey Akinshin há 1 ano atrás
pai
commit
7822cd8100
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      Terminal.Gui/Input/Mouse.cs

+ 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}";
 	}
-}
+}