We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75d6ec9 + e280f40 commit c26a770Copy full SHA for c26a770
1 file changed
src/main/java/cam72cam/mod/gui/screen/TextField.java
@@ -64,11 +64,11 @@ public boolean isEnabled() {
64
65
/** Validator that can block a string from being entered */
66
public void setValidator(Predicate<String> filter) {
67
- internal().setValidator(filter::test);
+ internal.setValidator(filter::test);
68
}
69
70
/** Move cursor to this text field */
71
public void setFocused(boolean b) {
72
- internal().setFocused2(b);
+ internal.setFocused2(b);
73
74
0 commit comments