mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 19:39:19 +01:00
refactor: OnDraw, OnBuildUi -> Draw,
This commit is contained in:
parent
9214e17577
commit
3c65cc95ee
4 changed files with 11 additions and 11 deletions
|
|
@ -131,7 +131,7 @@ namespace Dalamud.Interface.Internal
|
|||
/// <summary>
|
||||
/// This event gets called by a plugin UiBuilder when read
|
||||
/// </summary>
|
||||
public event RawDX11Scene.BuildUIDelegate OnDraw;
|
||||
public event RawDX11Scene.BuildUIDelegate Draw;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the default ImGui font.
|
||||
|
|
@ -620,7 +620,7 @@ namespace Dalamud.Interface.Internal
|
|||
this.LastImGuiIoPtr = ImGui.GetIO();
|
||||
this.lastWantCapture = this.LastImGuiIoPtr.WantCaptureMouse;
|
||||
|
||||
this.OnDraw?.Invoke();
|
||||
this.Draw?.Invoke();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue