We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b08c96 commit 2aa07a2Copy full SHA for 2aa07a2
Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -37,12 +37,17 @@ private async Task LoadIconAsync()
37
OnPropertyChanged(nameof(Image));
38
}
39
40
+ private bool _imageLoaded = false;
41
+
42
public ImageSource Image
43
{
44
get
45
- if (_image == ImageLoader.MissingImage)
46
+ if (!_imageLoaded)
47
+ {
48
+ _imageLoaded = true;
49
_ = LoadIconAsync();
50
+ }
51
52
return _image;
53
0 commit comments