It's time to build a barbershop! (#22565)

* barber!

* 5% change to maintenance
This commit is contained in:
Ed
2023-12-22 12:54:00 +03:00
committed by GitHub
parent 5d185483b4
commit 5a1e317e0f
12 changed files with 253 additions and 42 deletions

View File

@@ -64,5 +64,16 @@ public sealed class MagicMirrorBoundUserInterface : BoundUserInterface
_window.UpdateState(data);
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (!disposing)
return;
if (_window != null)
_window.OnClose -= Close;
_window?.Dispose();
}
}