OSX: fix T37065 cmd+c not working in Info - console

This commit is contained in:
jens verwiebe 2013-11-23 16:39:07 +01:00
parent 2cb63486a9
commit d846c9a3b7
Notes: blender-bot 2023-02-14 11:43:49 +01:00
Referenced by issue #37065, cmd+c not working in Info - console
1 changed files with 3 additions and 0 deletions

View File

@ -220,6 +220,9 @@ static void info_keymap(struct wmKeyConfig *keyconf)
WM_keymap_add_item(keymap, "INFO_OT_report_delete", XKEY, KM_PRESS, 0, 0);
WM_keymap_add_item(keymap, "INFO_OT_report_delete", DELKEY, KM_PRESS, 0, 0);
WM_keymap_add_item(keymap, "INFO_OT_report_copy", CKEY, KM_PRESS, KM_CTRL, 0);
#ifdef __APPLE__
WM_keymap_add_item(keymap, "INFO_OT_report_copy", CKEY, KM_PRESS, KM_OSKEY, 0);
#endif
}
/* add handlers, stuff you only do once or on area/region changes */