Yoh Deadfall
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Base/Threading/Dispatcher.Queue.cs
|
|
@ -65,7 +65,7 @@ public partial class Dispatcher |
|
|
job = _queue.Peek(); |
|
|
job = _queue.Peek(); |
|
|
if (job == null) |
|
|
if (job == null) |
|
|
return; |
|
|
return; |
|
|
if (priority != null && job.Priority < priority.Value) |
|
|
if (job.Priority < priority.Value) |
|
|
return; |
|
|
return; |
|
|
ExecuteJob(job); |
|
|
ExecuteJob(job); |
|
|
} |
|
|
} |
|
|
|