Skip to content

Commit

Permalink
[API] Fix dragInt3 only shows 2 boxes
Browse files Browse the repository at this point in the history
fixes #68
  • Loading branch information
SpaiR committed Sep 12, 2021
1 parent 4e56056 commit e529c61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions imgui-binding/src/main/java/imgui/ImGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -2093,23 +2093,23 @@ public static boolean combo(String label, ImInt currentItem, String itemsSeparat
*/

public static native boolean dragInt3(String label, int[] v); /*
return ImGui::DragInt2(label, v);
return ImGui::DragInt3(label, v);
*/

public static native boolean dragInt3(String label, int[] v, float vSpeed); /*
return ImGui::DragInt2(label, v, vSpeed);
return ImGui::DragInt3(label, v, vSpeed);
*/

public static native boolean dragInt3(String label, int[] v, float vSpeed, float vMin); /*
return ImGui::DragInt2(label, v, vSpeed, vMin);
return ImGui::DragInt3(label, v, vSpeed, vMin);
*/

public static native boolean dragInt3(String label, int[] v, float vSpeed, float vMin, float vMax); /*
return ImGui::DragInt2(label, v, vSpeed, vMin, vMax);
return ImGui::DragInt3(label, v, vSpeed, vMin, vMax);
*/

public static native boolean dragInt3(String label, int[] v, float vSpeed, float vMin, float vMax, String format); /*
return ImGui::DragInt2(label, v, vSpeed, vMin, vMax, format);
return ImGui::DragInt3(label, v, vSpeed, vMin, vMax, format);
*/

public static native boolean dragInt4(String label, int[] v); /*
Expand Down

0 comments on commit e529c61

Please sign in to comment.