Fix modal keymap breaking exporter

We could support quotes in keymap names, for now don't write them.
This commit is contained in:
Campbell Barton 2018-07-02 17:37:15 +02:00
parent 94bc1a40b4
commit 861cf1d131
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ static wmKeyMap *outliner_item_drag_drop_modal_keymap(wmKeyConfig *keyconf)
{OUTLINER_ITEM_DRAG_CONFIRM, "CONFIRM", 0, "Confirm/Drop", ""},
{0, NULL, 0, NULL, NULL}
};
const char *map_name = "Outliner Item Drap 'n Drop Modal Map";
const char *map_name = "Outliner Item Drap & Drop Modal Map";
wmKeyMap *keymap = WM_modalkeymap_get(keyconf, map_name);