Skip to content

Commit f9620cb

Browse files
committed
[Binding] ImNodes
1 parent 642d7ab commit f9620cb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ It hides all low-level stuff under one class to extend, so you can build your GU
3333
- **Multi-Viewports/Docking Branch**<br>
3434
Binding has a full support of [Multi-Viewports](https://github.com/ocornut/imgui/wiki/Multi-Viewports) and [Docking](https://github.com/ocornut/imgui/wiki/Docking). <br>
3535
- **FreeType Font Renderer**<br>
36-
FreeType font renderer is included by default to draw a better quality fonts. Should be [enabled](https://github.com/ocornut/imgui/blob/v1.80/misc/freetype/README.md) though.<br>
36+
FreeType font renderer enabled by default to provide a better quality fonts.<br>
3737
- **Extensions**<br>
3838
Binding includes several useful [extensions](https://github.com/ocornut/imgui/wiki/Useful-Widgets) for Dear ImGui. [See full list](#extensions).
3939

@@ -242,7 +242,7 @@ dependencies {
242242
</details>
243243

244244
## Extensions
245-
- [ImNodes](https://github.com/Nelarius/imnodes/tree/595972941054e9fa453f5a6d5590a51c9e1c98a4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.80-1.5.0/example/src/main/java/ExampleImNodes.java) <br>
245+
- [ImNodes](https://github.com/Nelarius/imnodes/tree/868dda60d5829aec9a736cec7ff6be1299d543c0) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.80-1.5.0/example/src/main/java/ExampleImNodes.java) <br>
246246
A small, dependency-free node editor for dear imgui. (A good choice for simple start.)
247247
- [imgui-node-editor](https://github.com/thedmd/imgui-node-editor/tree/687a72f940c76cf5064e13fe55fa0408c18fcbe4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.80-1.5.0/example/src/main/java/ExampleImGuiNodeEditor.java) <br>
248248
Node Editor using ImGui. (A bit more complex than ImNodes, but has more features.)

example/src/main/java/ExampleImNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
public class ExampleImNodes {
1414
private static final ImNodesContext CONTEXT = new ImNodesContext();
15-
private static final String URL = "https://github.com/Nelarius/imnodes/tree/5959729410";
15+
private static final String URL = "https://github.com/Nelarius/imnodes/tree/868dda6";
1616

1717
private static final ImInt LINK_A = new ImInt();
1818
private static final ImInt LINK_B = new ImInt();

0 commit comments

Comments
 (0)