mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
parent
bd52c60c6f
commit
832288a76e
1 changed files with 2 additions and 2 deletions
|
|
@ -412,11 +412,11 @@ public static unsafe partial class ImGui
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool MenuItem(ImU8String label, bool enabled = true)
|
public static bool MenuItem(ImU8String label, bool selected = false, bool enabled = true)
|
||||||
{
|
{
|
||||||
fixed (byte* labelPtr = &label.GetPinnableNullTerminatedReference())
|
fixed (byte* labelPtr = &label.GetPinnableNullTerminatedReference())
|
||||||
{
|
{
|
||||||
var r = ImGuiNative.MenuItem(labelPtr, null, null, enabled ? (byte)1 : (byte)0) != 0;
|
var r = ImGuiNative.MenuItem(labelPtr, null, selected ? (byte)1 : (byte)0, enabled ? (byte)1 : (byte)0) != 0;
|
||||||
label.Dispose();
|
label.Dispose();
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue