1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 21:38:38 +00:00

Fix race condition when opening window that causes a crash

This commit is contained in:
Diogo Trindade 2023-07-24 16:43:00 +01:00
parent fc598d88ad
commit 3830e8566e

View File

@ -50,6 +50,9 @@ public partial class ProfileConfigurationIcon : UserControl, IDisposable
{
Dispatcher.UIThread.Post(() =>
{
if (ConfigurationIcon is null)
return;
Stream? stream = ConfigurationIcon.GetIconStream();
if (stream == null)
Content = new MaterialIcon {Kind = MaterialIconKind.QuestionMark};