Copy, Paste, and Cut keybindings are wrong on the Mac.
They are bound to the control key instead of the command key.
i.e they are bound to control-c, control-v and control-x instead of command-c, command-v and command-x
Run the following program and attempt to copy/paste/cut with the normal keyboard shortcuts and they do not work, using the "control" shortcuts work though.
package copypastebug;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.ext.swing.SwingTextField;
/**
* @author bill
*/
Stage {
title: "Application title"
width: 250
height: 80
scene: Scene {
content: SwingTextField {
columns: 10
text: "TextField"
editable: true
}
}
}
They are bound to the control key instead of the command key.
i.e they are bound to control-c, control-v and control-x instead of command-c, command-v and command-x
Run the following program and attempt to copy/paste/cut with the normal keyboard shortcuts and they do not work, using the "control" shortcuts work though.
package copypastebug;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.ext.swing.SwingTextField;
/**
* @author bill
*/
Stage {
title: "Application title"
width: 250
height: 80
scene: Scene {
content: SwingTextField {
columns: 10
text: "TextField"
editable: true
}
}
}
- duplicates
-
JDK-8107026 Copy, Paste, and Cut key bindings are wrong on the Mac
-
- Closed
-