Skip to content

Commit

Permalink
Fix MouseEvent.ToString() (gui-cs#3068)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin authored Dec 21, 2023
1 parent 74afd18 commit 7822cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Terminal.Gui/Input/Mouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
}
}
}

0 comments on commit 7822cd8

Please sign in to comment.