When pressing XKEY or DELETE in NLA/Action/IPO editors, you are no

longer asked whether you want to delete the selected markers or keys.
Instead, it more 'logically' deletes anything that is selected.
This commit is contained in:
2007-03-17 05:50:47 +00:00
parent b00f592992
commit bd04d23465
4 changed files with 29 additions and 44 deletions

View File

@@ -1004,13 +1004,11 @@ static void do_action_keymenu(void *arg, int event)
break;
case ACTMENU_KEY_DELETE:
if (okee("Erase selected keys")) {
if (key) {
delete_meshchannel_keys(key);
}
else if (act) {
delete_actionchannel_keys ();
}
if (key) {
delete_meshchannel_keys(key);
}
else if (act) {
delete_actionchannel_keys ();
}
break;
case ACTMENU_KEY_BAKE: