mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add cond=0 default to SetDragDropPayload
This commit is contained in:
parent
bd824130bd
commit
b66860cdba
1 changed files with 1 additions and 1 deletions
|
|
@ -546,7 +546,7 @@ public static unsafe partial class ImGui
|
||||||
text.Recycle();
|
text.Recycle();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool SetDragDropPayload(ImU8String type, ReadOnlySpan<byte> data, ImGuiCond cond)
|
public static bool SetDragDropPayload(ImU8String type, ReadOnlySpan<byte> data, ImGuiCond cond = ImGuiCond.None)
|
||||||
{
|
{
|
||||||
fixed (byte* typePtr = &type.GetPinnableNullTerminatedReference())
|
fixed (byte* typePtr = &type.GetPinnableNullTerminatedReference())
|
||||||
fixed (byte* dataPtr = data)
|
fixed (byte* dataPtr = data)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue