I'm trying to resize the caret in a TextField without modifying the font size, but I can not do it.
Does anyone know how to do that?
Thanks!
I'm trying to resize the caret in a TextField without modifying the font size, but I can not do it.
Does anyone know how to do that?
Thanks!
I have no idea why you would want to do this. And this probably won't give you exactly what you want, but it does change the size of the caret. Note that the big caret will still be clipped to be within the bounds of the containing TextField.
The small line between the m and the a is the small caret. Image transfer into stackoverflow reduced clarity so it is hard to see:
TextFieldCaretControlSkin.java
Note, this uses a private API class in Java 8, so it won't work for Java 9. In Java 9, the TextFieldSkin will become public API (move to a
javafx
package instead of acom.sun
package), so it will probably work in Java 9 if you change the package.This answer was based on this answer: