Project manager: remove projects with delete key

This commit is contained in:
lupoDharkael 2018-10-02 11:28:18 +02:00
parent c432ce4ee1
commit 006021236a

View file

@ -999,6 +999,10 @@ void ProjectManager::_unhandled_input(const Ref<InputEvent> &p_ev) {
_open_project();
} break;
case KEY_DELETE: {
_erase_project();
} break;
case KEY_HOME: {
for (int i = 0; i < scroll_children->get_child_count(); i++) {