[Bf-blender-cvs] [861cf1d1317] blender2.8: Fix modal keymap breaking exporter

Campbell Barton noreply at git.blender.org
Mon Jul 2 17:39:12 CEST 2018


Commit: 861cf1d1317633868d3ea403483646524f471a54
Author: Campbell Barton
Date:   Mon Jul 2 17:37:15 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB861cf1d1317633868d3ea403483646524f471a54

Fix modal keymap breaking exporter

We could support quotes in keymap names, for now don't write them.

===================================================================

M	source/blender/editors/space_outliner/outliner_ops.c

===================================================================

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);



More information about the Bf-blender-cvs mailing list