Skip to content

Commit 2ed4c98

Browse files
committed
Fix invalid var name
1 parent 2b25493 commit 2ed4c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NetSparkle.UI.Avalonia/UIFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private void ShowMessage(string title, string message)
229229
Icon = _applicationIcon
230230
};
231231
messageWindow.WindowStartupLocation = WindowStartupLocation.CenterScreen;
232-
ProcessWindowAfterInit?.Invoke(window, this);
232+
ProcessWindowAfterInit?.Invoke(messageWindow, this);
233233
messageWindow.Show(); // TODO: This was ShowDialog; will this break anything?
234234
}
235235

0 commit comments

Comments
 (0)