mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove unnecessary local variable
This commit is contained in:
parent
303d3b9754
commit
fb3a23fb2c
1 changed files with 1 additions and 2 deletions
|
|
@ -173,8 +173,7 @@ namespace Flow.Launcher.ViewModel
|
|||
}
|
||||
|
||||
// We need to modify the property not field here to trigger the OnPropertyChanged event
|
||||
var i = await ImageLoader.LoadAsync(imagePath, loadFullImage);
|
||||
Image = i;
|
||||
Image = await ImageLoader.LoadAsync(imagePath, loadFullImage).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
public Result Result { get; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue