Add <Select All>(Ctrl+A) shortcut to LineEdit.

This commit is contained in:
MarianoGNU 2015-11-06 17:24:39 -03:00
parent dde6396f22
commit 7828986b1c

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;}
} }