We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c8a42 commit c0a48beCopy full SHA for c0a48be
2 files changed
src/UniGetUI/Pages/DialogPages/DialogHelper_Generic.cs
@@ -383,6 +383,7 @@ public static async void ShowReleaseNotes()
383
notes.Close += (_, _) => NotesDialog.Hide();
384
NotesDialog.Content = notes;
385
await Window.ShowDialogAsync(NotesDialog);
386
+ notes.Dispose();
387
}
388
389
public static async void HandleBrokenWinGet()
src/UniGetUI/Pages/DialogPages/ReleaseNotes.xaml.cs
@@ -10,7 +10,7 @@ namespace UniGetUI.Interface.Dialogs
10
/// <summary>
11
/// An empty page that can be used on its own or navigated to within a Frame.
12
/// </summary>
13
- public sealed partial class ReleaseNotes : Page
+ public sealed partial class ReleaseNotes : Page, IDisposable
14
{
15
16
public event EventHandler<EventArgs>? Close;
0 commit comments