Skip to content

Commit

Permalink
⬆️ 1.3.10 attempting to fix dearimgui again
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Oct 3, 2024
1 parent 3259704 commit f81f139
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true

# Mod Properties
mod_version=1.3.9
mod_version=1.3.10
maven_group=gay.asoji
archives_base_name=innerpastels

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ public class RenderSystemMixin {
InnerPastelsImGuiImpl.INSTANCE.initialize(handle);
InnerPastelsImGuiImpl.INSTANCE.startFrame();

if (ImGuiClient.INSTANCE.isImGuiRenderEnabled()) {
ImGuiClient.INSTANCE.getPanels().forEach((it) -> {
it.theme();
it.render(new ImBoolean());
}
);
}
ImGuiClient.INSTANCE.getPanels().forEach((it) -> {
it.theme();
it.render(new ImBoolean());
}
);

InnerPastelsImGuiImpl.INSTANCE.endFrame();
}
Expand Down

0 comments on commit f81f139

Please sign in to comment.