GUI: Fix root namespace wasn't excluded properly if selected
This commit is contained in:
@@ -370,7 +370,7 @@ namespace Il2CppInspectorGUI
|
||||
|
||||
foreach (var node in nodes) {
|
||||
if (node.IsChecked == false)
|
||||
ns.Add(node.FullName);
|
||||
ns.Add(node.FullName == "<global namespace>" ? "" : node.FullName);
|
||||
|
||||
else if (node.Children != null)
|
||||
ns.AddRange(constructExcludedNamespaces(node.Children));
|
||||
|
||||
Reference in New Issue
Block a user