CodeArea's caret should be hidden when control lacks focus.
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();
}
}
CodeArea's caret should be hidden when control lacks focus.