Skip to content

Commit 6c23ac8

Browse files
committed
refactor
1 parent 048038b commit 6c23ac8

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/XTerm.NET/Events/TerminalEvents.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ public HyperlinkEventArgs(string url)
150150
/// </summary>
151151
public class WindowMovedEventArgs : EventArgs
152152
{
153+
// coord in pixels
153154
public int X { get; }
154155
public int Y { get; }
155156

@@ -165,7 +166,10 @@ public WindowMovedEventArgs(int x, int y)
165166
/// </summary>
166167
public class WindowResizedEventArgs : EventArgs
167168
{
169+
// width in pixels
168170
public int Width { get; }
171+
172+
// height in pixels
169173
public int Height { get; }
170174

171175
public WindowResizedEventArgs(int width, int height)

0 commit comments

Comments
 (0)