-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
jfx24
-
x86_64
-
linux_ubuntu
ADDITIONAL SYSTEM INFORMATION :
Ubuntu 20.04.6 LTS
openjdk version "23" 2024-09-17
A DESCRIPTION OF THE PROBLEM :
The cursor is not shown in TextField when text is selected. At the same time they say that in Windows cursor is shown.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the provided code in Ubuntu. Select the text. When text is selected the cursor won't be visible. Try in Windows.
---------- BEGIN SOURCE ----------
public class NewMain1 extends Application {
@Override
public void start(Stage primaryStage) {
var badTextField = new TextField("Some text");
VBox root = new VBox(badTextField);
root.setPadding(new Insets(15));
Scene scene = new Scene(root, 300, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------
Ubuntu 20.04.6 LTS
openjdk version "23" 2024-09-17
A DESCRIPTION OF THE PROBLEM :
The cursor is not shown in TextField when text is selected. At the same time they say that in Windows cursor is shown.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the provided code in Ubuntu. Select the text. When text is selected the cursor won't be visible. Try in Windows.
---------- BEGIN SOURCE ----------
public class NewMain1 extends Application {
@Override
public void start(Stage primaryStage) {
var badTextField = new TextField("Some text");
VBox root = new VBox(badTextField);
root.setPadding(new Insets(15));
Scene scene = new Scene(root, 300, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------