Fixed a bug for root nodes with namespace prefix

This commit is contained in:
awraae 2017-05-30 13:24:35 +02:00
Родитель 540b70b5c8
Коммит 415e2f0785
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -285,7 +285,7 @@ namespace ICSharpCode.WpfDesign.XamlDom
string prefix = _xmlDoc.DocumentElement.GetPrefixOfNamespace(@namespace);
if (_xmlDoc.DocumentElement.NamespaceURI == @namespace && _xmlDoc.Prefix == String.Empty)
if (_xmlDoc.DocumentElement.NamespaceURI == @namespace && _xmlDoc.DocumentElement.Prefix == String.Empty)
{
return string.Empty;
}