[Bf-blender-cvs] [ca51398] blender-v2.76a-release: Fix T46538: Mark and Clear Seam in UV Editor, assigning Hotkeys.

Bastien Montagne noreply at git.blender.org
Thu Oct 29 11:40:22 CET 2015


Commit: ca51398fd8c1fb31a8952e6d3076c655a838cf6a
Author: Bastien Montagne
Date:   Fri Oct 23 14:34:57 2015 +0200
Branches: blender-v2.76a-release
https://developer.blender.org/rBca51398fd8c1fb31a8952e6d3076c655a838cf6a

Fix T46538: Mark and Clear Seam in UV Editor, assigning Hotkeys.

UV Editor keymap is not bound to a given editor (spacetype)...

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

M	source/blender/windowmanager/intern/wm_keymap.c

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

diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c
index 5098df2..9d2ca35 100644
--- a/source/blender/windowmanager/intern/wm_keymap.c
+++ b/source/blender/windowmanager/intern/wm_keymap.c
@@ -1783,7 +1783,7 @@ wmKeyMap *WM_keymap_guess_opname(const bContext *C, const char *opname)
 	}
 	/* UV Editor */
 	else if (STRPREFIX(opname, "UV_OT")) {
-		km = WM_keymap_find_all(C, "UV Editor", sl->spacetype, 0);
+		km = WM_keymap_find_all(C, "UV Editor", 0, 0);
 	}
 	/* Node Editor */
 	else if (STRPREFIX(opname, "NODE_OT")) {




More information about the Bf-blender-cvs mailing list