You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void fixJFXTextField(JFXTextField field) throws NoSuchFieldException, IllegalAccessException {
JFXTextFieldSkin<?> sk = new JFXTextFieldSkin<>(field);
field.setSkin(sk);
Field f = JFXTextFieldSkin.class.getDeclaredField("textNode");
f.setAccessible(true);
f.set(sk, new Text());
}
This is code to fix the exception.
this caused exception NullPointerException
The text was updated successfully, but these errors were encountered:
public static void fixJFXTextField(JFXTextField field) throws NoSuchFieldException, IllegalAccessException {
JFXTextFieldSkin<?> sk = new JFXTextFieldSkin<>(field);
field.setSkin(sk);
Field f = JFXTextFieldSkin.class.getDeclaredField("textNode");
f.setAccessible(true);
f.set(sk, new Text());
}
This is code to fix the exception.
this caused exception NullPointerException
The text was updated successfully, but these errors were encountered: