} else if (keyCode == Keyboard.KeyCode.C
&& Keyboard.isPressed(Keyboard.Modifier.CTRL)) {
if (textInput.isPassword()) {
ApplicationContext.beep();
} else {
textInput.copy();
}
} else if (keyCode == Keyboard.KeyCode.V
&& Keyboard.isPressed(Keyboard.Modifier.CTRL)) {
textInput.paste();
} else {