mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
fix input scalar not working the same way as normal imgui code
This commit is contained in:
parent
69b4ed941f
commit
77bf6b3f8f
1 changed files with 8 additions and 8 deletions
|
|
@ -270,8 +270,8 @@ public static unsafe partial class ImGui
|
|||
labelPtr,
|
||||
dataType,
|
||||
dataPtr,
|
||||
stepPtr,
|
||||
stepFastPtr,
|
||||
step > T.Zero ? stepPtr : null,
|
||||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
|
|
@ -298,8 +298,8 @@ public static unsafe partial class ImGui
|
|||
dataType,
|
||||
dataPtr,
|
||||
data.Length,
|
||||
stepPtr,
|
||||
stepFastPtr,
|
||||
step > T.Zero ? stepPtr : null,
|
||||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
|
|
@ -325,8 +325,8 @@ public static unsafe partial class ImGui
|
|||
labelPtr,
|
||||
GetImGuiDataType<T>(),
|
||||
dataPtr,
|
||||
stepPtr,
|
||||
stepFastPtr,
|
||||
step > T.Zero ? stepPtr : null,
|
||||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
|
|
@ -353,8 +353,8 @@ public static unsafe partial class ImGui
|
|||
GetImGuiDataType<T>(),
|
||||
dataPtr,
|
||||
data.Length,
|
||||
stepPtr,
|
||||
stepFastPtr,
|
||||
step > T.Zero ? stepPtr : null,
|
||||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue