mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 05:17:42 +01:00
Misc UiDebug2 Fixes
- The widget will now only check the `FFXIVClientStructs` assembly for addon type information. - Updated ImRaii usage - Clarified suppression in `NodeTree.Text.cs` - Restored the original Addon Inspector in the Data window, so that both versions can coexist for the time being
This commit is contained in:
parent
e19f9284e5
commit
552aafd70d
17 changed files with 379 additions and 347 deletions
|
|
@ -39,9 +39,10 @@ internal class AddonPopoutWindow : Window, IDisposable
|
|||
/// <inheritdoc/>
|
||||
public override void Draw()
|
||||
{
|
||||
var ch = ImRaii.Child($"{this.WindowName}child", new(-1, -1), true);
|
||||
this.addonTree.Draw();
|
||||
ch.Dispose();
|
||||
using (ImRaii.Child($"{this.WindowName}child", new(-1, -1), true))
|
||||
{
|
||||
this.addonTree.Draw();
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue