mirror of
https://github.com/ppy/osu.git
synced 2025-03-15 14:47:18 +08:00
Unify ConfigureAwait()
calls across method
This commit is contained in:
parent
c5deb9f36b
commit
e5943e460d
@ -237,7 +237,7 @@ namespace osu.Game.Screens.SelectV2
|
|||||||
if (DebounceDelay > 0)
|
if (DebounceDelay > 0)
|
||||||
{
|
{
|
||||||
log($"Filter operation queued, waiting for {DebounceDelay} ms debounce");
|
log($"Filter operation queued, waiting for {DebounceDelay} ms debounce");
|
||||||
await Task.Delay(DebounceDelay, cts.Token).ConfigureAwait(true);
|
await Task.Delay(DebounceDelay, cts.Token).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy must be performed on update thread for now (see ConfigureAwait above).
|
// Copy must be performed on update thread for now (see ConfigureAwait above).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user