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>2010-09-06 09:20:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-06 09:20:05 +0400
commit0106b00a2a531705574f4bc38d840fd275dbb27f (patch)
tree6910bcdd77449de4cabb016c9b0834a9820d07f9 /source/blender/windowmanager/intern/wm_keymap.c
parenteb1a9f070f124a4c901755883815a53c25b8ab75 (diff)
rename '3D View' keymap, since its know as 'View 3D' for other areas of the keymap editor.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_keymap.c')
-rw-r--r--source/blender/windowmanager/intern/wm_keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c
index f1873b14232..2528ab3fc01 100644
--- a/source/blender/windowmanager/intern/wm_keymap.c
+++ b/source/blender/windowmanager/intern/wm_keymap.c
@@ -781,7 +781,7 @@ wmKeyMap *WM_keymap_guess_opname(const bContext *C, char *opname)
/* 3D View */
else if (strstr(opname, "VIEW3D_OT")) {
- km = WM_keymap_find_all(C, "3D View", sl->spacetype, 0);
+ km = WM_keymap_find_all(C, "View 3D", sl->spacetype, 0);
}
else if (strstr(opname, "OBJECT_OT")) {
km = WM_keymap_find_all(C, "Object Mode", 0, 0);
@@ -894,7 +894,7 @@ wmKeyMap *WM_keymap_guess_opname(const bContext *C, char *opname)
/* check for relevant editor */
switch(sl->spacetype) {
case SPACE_VIEW3D:
- km = WM_keymap_find_all(C, "3D View", sl->spacetype, 0);
+ km = WM_keymap_find_all(C, "View 3D", sl->spacetype, 0);
break;
case SPACE_IPO:
km = WM_keymap_find_all(C, "Graph Editor", sl->spacetype, 0);