sshahine / JFoenix

JavaFX Material Design Library
MIT License
6.27k stars 1.05k forks source link

Crash while using JFXTextField #1246

Open Jack253-png opened 1 year ago

Jack253-png commented 1 year ago

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