Browse Source

Update DispatcherPriority.cs

pull/9546/head
Nikita Tsukanov 4 years ago
committed by GitHub
parent
commit
60b4963958
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Avalonia.Base/Threading/DispatcherPriority.cs

4
src/Avalonia.Base/Threading/DispatcherPriority.cs

@ -68,7 +68,7 @@ namespace Avalonia.Threading
public static readonly DispatcherPriority Composition = new(Render + 1);
/// <summary>
/// The job will be processed with the same priority as composition updates.
/// The job will be processed with before composition updates.
/// </summary>
public static readonly DispatcherPriority PreComposition = new(Composition + 1);
@ -128,4 +128,4 @@ namespace Avalonia.Threading
/// <inheritdoc />
public int CompareTo(DispatcherPriority other) => Value.CompareTo(other.Value);
}
}
}

Loading…
Cancel
Save