Merge pull request #26 from leocereus/RootNodeNamespace

Fixed a bug for root nodes with namespace prefix
This commit is contained in:
Jochen Kühner 2017-05-30 17:03:32 +02:00 коммит произвёл GitHub
Родитель 96572610a2 415e2f0785
Коммит bd1cfdb942
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -285,7 +285,7 @@ namespace ICSharpCode.WpfDesign.XamlDom
string prefix = _xmlDoc.DocumentElement.GetPrefixOfNamespace(@namespace); 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; return string.Empty;
} }