Project manager: remove projects with delete key
This commit is contained in:
parent
c432ce4ee1
commit
006021236a
1 changed files with 4 additions and 0 deletions
|
@ -999,6 +999,10 @@ void ProjectManager::_unhandled_input(const Ref<InputEvent> &p_ev) {
|
||||||
|
|
||||||
_open_project();
|
_open_project();
|
||||||
} break;
|
} break;
|
||||||
|
case KEY_DELETE: {
|
||||||
|
|
||||||
|
_erase_project();
|
||||||
|
} break;
|
||||||
case KEY_HOME: {
|
case KEY_HOME: {
|
||||||
|
|
||||||
for (int i = 0; i < scroll_children->get_child_count(); i++) {
|
for (int i = 0; i < scroll_children->get_child_count(); i++) {
|
||||||
|
|
Loading…
Reference in a new issue