Skip to content

Commit e11321a

Browse files
committed
Small tweaks
1 parent a7f92b2 commit e11321a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

imgui-binding/src/main/java/imgui/ImGui.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package imgui;
22

3-
import imgui.enums.ImGuiInputTextFlags;
4-
53
import java.nio.ByteBuffer;
64

75
public final class ImGui {

imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ private void loop() {
274274

275275
private void showUi() {
276276
ImGui.SetNextWindowSize(600, 210, ImGuiCond.Once);
277-
ImGui.SetNextWindowPos(10, 10, ImGuiCond.FirstUseEver);
277+
ImGui.SetNextWindowPos(10, 10, ImGuiCond.Once);
278278

279279
ImGui.Begin("Custom window");
280280
ImGui.Text("Hello from Java!");

0 commit comments

Comments
 (0)