Skip to content

Commit 50fd5d2

Browse files
committed
fix text field theme
1 parent e417b42 commit 50fd5d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/cleanroommc/modularui/theme/TextFieldTheme.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public TextFieldTheme(int defaultWidth, int defaultHeight, @Nullable IDrawable b
2525
this.hintColor = hintColor;
2626
}
2727

28-
public TextFieldTheme(TextFieldTheme parent, JsonObject fallback, JsonObject json) {
28+
public TextFieldTheme(TextFieldTheme parent, JsonObject json, JsonObject fallback) {
2929
super(parent, json, fallback);
3030
this.markedColor = JsonHelper.getColorWithFallback(json, fallback, parent.getMarkedColor(), IThemeApi.MARKED_COLOR);
3131
this.hintColor = JsonHelper.getColorWithFallback(json, fallback, parent.getHintColor(), IThemeApi.HINT_COLOR);

0 commit comments

Comments
 (0)