浏览代码

Fix MouseEvent.ToString() (#3068)

Andrey Akinshin 1 年之前
父节点
当前提交
7822cd8100
共有 1 个文件被更改,包括 2 次插入2 次删除
  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}";
 	}
-}
+}