mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Provide PopupModal with flags
This commit is contained in:
parent
8ed21b4645
commit
f0568216cb
1 changed files with 3 additions and 0 deletions
|
|
@ -40,6 +40,9 @@ public static partial class ImRaii
|
|||
public static IEndObject PopupModal(ImU8String id)
|
||||
=> new EndConditionally(ImGui.EndPopup, ImGui.BeginPopupModal(id));
|
||||
|
||||
public static IEndObject PopupModal(ImU8String id, ImGuiWindowFlags flags)
|
||||
=> new EndConditionally(ImGui.EndPopup, ImGui.BeginPopupModal(id, flags));
|
||||
|
||||
public static IEndObject PopupModal(ImU8String id, ref bool open)
|
||||
=> new EndConditionally(ImGui.EndPopup, ImGui.BeginPopupModal(id, ref open));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue