Fix some dispose issues

This commit is contained in:
Zeffuro
2026-01-19 00:03:42 +01:00
parent f576af797e
commit f074ca446f
2 changed files with 18 additions and 6 deletions
@@ -154,11 +154,10 @@ public class AddonCategoryConfigurationWindow : NativeAddon
protected override unsafe void OnFinalize(AtkUnitBase* addon)
{
_selectionListNode?.Dispose();
_selectionListNode = null;
_configNode?.Dispose();
_configNode = null;
_separatorLine = null;
_nothingSelectedTextNode = null;
base.OnFinalize(addon);
}
}