Fix prompt text clipping in text area

This commit is contained in:
Christoph Atteneder 2021-04-26 11:20:07 +02:00
parent 69c7817340
commit be86c0d4e2
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B

View File

@ -92,7 +92,6 @@ public class JFXTextAreaSkinBisqStyle extends TextAreaSkin {
promptText = new Text();
promptText.setManaged(false);
promptText.getStyleClass().add("text");
promptText.setTranslateX(-getSkinnable().getPadding().getLeft());
promptText.visibleProperty().bind(linesWrapper.usePromptText);
promptText.fontProperty().bind(getSkinnable().fontProperty());
promptText.textProperty().bind(getSkinnable().promptTextProperty());