mirror of
https://github.com/godotengine/godot.git
synced 2024-12-20 01:53:18 +00:00
Add <Select All>(Ctrl+A) shortcut to LineEdit.
This commit is contained in:
parent
dde6396f22
commit
7828986b1c
@ -192,6 +192,9 @@ void LineEdit::_input_event(InputEvent p_event) {
|
||||
}
|
||||
|
||||
} break;
|
||||
case (KEY_A): { //Select All
|
||||
select();
|
||||
} break;
|
||||
default: { handled=false;}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user