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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-10-23 15:34:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-10-29 13:10:15 +0300
commitca51398fd8c1fb31a8952e6d3076c655a838cf6a (patch)
tree491773de4a0fe362b4ea1adaf1a47adf71529006
parentff5a34e3704cff2afcb82f3bb1a760416ef57c03 (diff)
Fix T46538: Mark and Clear Seam in UV Editor, assigning Hotkeys.
UV Editor keymap is not bound to a given editor (spacetype)...
-rw-r--r--source/blender/windowmanager/intern/wm_keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c
index 5098df2c0a6..9d2ca35e882 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")) {