You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike standard JavaFX controls, CodeArea fails to display highlighted border when focused.
public class Test extends Application {
public static void main(String[] args) {launch(args);}
public void start(Stage pStage) {
pStage.setTitle("Test");
final Pane root = new VBox();
root.getChildren().addAll(
new CodeArea(), new TextArea(), new TextField()
);
pStage.setScene(new Scene(root, 300, 250));
pStage.show();
}
}
The text was updated successfully, but these errors were encountered:
Unlike standard JavaFX controls, CodeArea fails to display highlighted border when focused.
The text was updated successfully, but these errors were encountered: