Prioritize DependencyObject over INPC for UNO

This commit is contained in:
Dr.Rx 2019-09-16 17:11:29 -04:00
Родитель a342f88b60
Коммит cee96debab
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -37,7 +37,13 @@ namespace ReactiveUI
return 0;
}
#if HAS_UNO
// DependencyObject must be prioritized compared to INotifyPropertyChanged (score == 5)
// until https://github.com/unoplatform/uno/issues/1551 is resolved.
return 6;
#else
return 4;
#endif
}
/// <inheritdoc/>