Patch #5069, by Juho Vepsäläinen (bebraw)

Enable to use Xkey or DEL for deleting objects in outliner.

Note: there's reasons to be a bit reluctant with extensions like this.
Mostly related to the fact that outliner operations is completely unfinished
still. We need to spend time on thinking over how it should evolve, and
based on that the proper hotkeys and menus can be added as well.
This commit is contained in:
2006-11-08 12:03:10 +00:00
parent 6106b1648f
commit 6685c0d571
3 changed files with 15 additions and 2 deletions

View File

@@ -4508,6 +4508,10 @@ static void winqreadoopsspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
outliner_find_panel(sa, again, search_flags);
}
break;
case XKEY:
case DELKEY:
outliner_del(sa);
break;
case WKEY:
outliner_operation_menu(sa);
break;