Revert "Validating Visual's connection to visual tree (#8202)"

This reverts commit 647fadd7ff.
This commit is contained in:
Harshit Mishra 2024-11-22 12:30:36 +05:30 коммит произвёл github-actions
Родитель 1b8b299ed1
Коммит 8b7779e289
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -161,7 +161,7 @@ namespace System.Windows.Controls
else
{
// Uncheck all checked RadioButtons different from the current one
if (rb != this && (rb.IsChecked == true) && rootScope == KeyboardNavigation.GetVisualRoot(rb) && rootScope != null)
if (rb != this && (rb.IsChecked == true) && rootScope == KeyboardNavigation.GetVisualRoot(rb))
rb.UncheckRadioButton();
i++;
}