Merge pull request #26 from leocereus/RootNodeNamespace
Fixed a bug for root nodes with namespace prefix
This commit is contained in:
Коммит
bd1cfdb942
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче