Merge pull request #2747 from MarianoGnu/line_edit

Add <Select All>(Ctrl+A) shortcut to LineEdit. Fixes #1094
This commit is contained in:
Juan Linietsky 2015-11-18 18:55:59 -03:00
commit ef6fab88be

View file

@ -192,6 +192,9 @@ void LineEdit::_input_event(InputEvent p_event) {
} }
} break; } break;
case (KEY_A): { //Select All
select();
} break;
default: { handled=false;} default: { handled=false;}
} }