Skip to content

Commit

Permalink
fixed nullability in IAppWindow members
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmsu committed Jan 21, 2020
1 parent 5a4f71f commit a406fd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IAppWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public interface IAppWindow
Rect Bounds { get; }
Task<Rect> GetBounds();
Task<Rect> GetClientBounds();
string Title { get; }
Task<Exception> Activate();
Task<Exception> BringToFront();
string? Title { get; }
Task<Exception?> Activate();
Task<Exception?> BringToFront();
bool IsMinimized { get; }
bool IsResizable { get; }
bool IsVisible { get; }
Expand Down

0 comments on commit a406fd4

Please sign in to comment.