Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-02 18:37:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-02 18:37:15 +0300
commit861cf1d1317633868d3ea403483646524f471a54 (patch)
treea5f891b096eee263ac0509327b2e1d0858ca84e7 /source/blender/editors/space_outliner/outliner_ops.c
parent94bc1a40b44d6b6a955aa8ac56e6dc203f2f5cef (diff)
Fix modal keymap breaking exporter
We could support quotes in keymap names, for now don't write them.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_ops.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_ops.c b/source/blender/editors/space_outliner/outliner_ops.c
index bd31072557a..4d8c0c5bd38 100644
--- a/source/blender/editors/space_outliner/outliner_ops.c
+++ b/source/blender/editors/space_outliner/outliner_ops.c
@@ -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);