On Fri, 18 Jun 2021 14:08:25 GMT, Jose Pereda <[email protected]> wrote:
> This PR modifies the PasswordField's bullet character used on Android, as the
> current unicode code is not supported for most fonts, including Roboto.
Marked as reviewed by kcr (Lead).
modules/javafx.controls/src/android/java/javafx/scene/control/skin/TextFieldSkinAndroid.java
line 82:
> 80: return String.valueOf(BULLET).repeat(txt.length());
> 81: } else {
> 82: return txt;
Should this call `return super.maskText(txt);` in case the implementation of
the superclass method ever changes? Either is OK with me.
-------------
PR: https://git.openjdk.java.net/jfx/pull/537