Merge branch 'dev' into feature/web_search_private_mode

This commit is contained in:
Zoltan 2025-08-13 08:34:37 +02:00 committed by GitHub
commit b612729426
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,12 +37,17 @@ namespace Flow.Launcher.ViewModel
OnPropertyChanged(nameof(Image));
}
private bool _imageLoaded = false;
public ImageSource Image
{
get
{
if (_image == ImageLoader.MissingImage)
if (!_imageLoaded)
{
_imageLoaded = true;
_ = LoadIconAsync();
}
return _image;
}