Merge pull request #1 from unoplatform/dev/dr/DPPriority

Prioritize DependencyObject over INPC for UNO
This commit is contained in:
David 2019-09-16 17:13:28 -04:00 коммит произвёл GitHub
Родитель a342f88b60 cee96debab
Коммит c9b546a77c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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/>