JFoenix icon indicating copy to clipboard operation
JFoenix copied to clipboard

Crash while using JFXTextField

Open MetsukiMio opened this issue 3 years ago • 0 comments

image 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. image this caused exception NullPointerException

MetsukiMio avatar Aug 21 '22 07:08 MetsukiMio