Browse Source

Update compat dispatcher priorities (#17948)

pull/17968/head
Nikita Tsukanov 1 year ago
committed by GitHub
parent
commit
03f91a2c3d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/Avalonia.Base/Threading/DispatcherPriority.cs

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

@ -112,7 +112,7 @@ namespace Avalonia.Threading
/// <summary> /// <summary>
/// The job will be processed with the same priority as data binding. /// The job will be processed with the same priority as data binding.
/// </summary> /// </summary>
[Obsolete("WPF compatibility"), EditorBrowsable(EditorBrowsableState.Never)] public static readonly DispatcherPriority DataBind = new(Render); [Obsolete("WPF compatibility"), EditorBrowsable(EditorBrowsableState.Never)] public static readonly DispatcherPriority DataBind = new(AsyncRenderTargetResize + 1);
/// <summary> /// <summary>
/// The job will be processed with normal priority. /// The job will be processed with normal priority.

Loading…
Cancel
Save