File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
imgui-app/src/main/java/imgui/app Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class Extra {
12
12
private static final Graph GRAPH = new Graph ();
13
13
14
14
public static void show (final Application app ) {
15
- ImGui .colorEdit3 ("Background Color" , app .getColorBg ().getData () );
15
+ ImGui .colorEdit3 ("Background Color" , app .getColorBg ().data );
16
16
ImGui .checkbox ("Show Demo Window" , SHOW_DEMO_WINDOW );
17
17
ImGui .checkbox ("Show ImNodes Demo Window" , SHOW_IMNODES_DEMO_WINDOW );
18
18
ImGui .checkbox ("Show imgui-node-editor Demo Window" , SHOW_IMGUI_NODE_EDITOR_DEMO_WINDOW );
Original file line number Diff line number Diff line change 6
6
* Object for color data.
7
7
*/
8
8
public class Color implements Cloneable {
9
- private final float [] data = new float [4 ];
9
+ public final float [] data = new float [4 ];
10
10
11
11
public Color () {
12
12
}
You can’t perform that action at this time.
0 commit comments