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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-23 23:42:35 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-23 23:42:35 +0400
commit8854d50c195116db44a318cf515b3c67e75ce335 (patch)
tree676527d567518cea1688f4790f324cb92ffe9ddb /source/blender/editors/space_clip/space_clip.c
parentb4ca7a7103c43b9b1ea1188074bd57d85f5e75ae (diff)
Camera tracking integration
========================== - Added building undstorted proxies. - Move render proxy settings outside from movie clip to clip user, so now different users can use different proxies. For example, clip editor displays original footage, 3d viewport displays 75% undistorted proxy. - Unified paths used for sequence and movie clips. Please, rebuild proxies if they would fail to load. - Added experimental operator "Delete Proxy". Use with care. - Moved clip operators outside of space_clip.
Diffstat (limited to 'source/blender/editors/space_clip/space_clip.c')
-rw-r--r--source/blender/editors/space_clip/space_clip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c
index c3da4027284..bb7a650ac9e 100644
--- a/source/blender/editors/space_clip/space_clip.c
+++ b/source/blender/editors/space_clip/space_clip.c
@@ -336,10 +336,6 @@ static void clip_keymap(struct wmKeyConfig *keyconf)
RNA_boolean_set(kmi->ptr, "backwards", 1);
RNA_boolean_set(kmi->ptr, "sequence", 1);
- /* ******** Hotkeys avalaible for main region only ******** */
-
- keymap= WM_keymap_find(keyconf, "Clip Editor", SPACE_CLIP, 0);
-
/* mode */
kmi= WM_keymap_add_item(keymap, "CLIP_OT_mode_set", TABKEY, KM_PRESS, 0, 0);
RNA_enum_set(kmi->ptr, "mode", SC_MODE_RECONSTRUCTION);
@@ -349,6 +345,10 @@ static void clip_keymap(struct wmKeyConfig *keyconf)
RNA_enum_set(kmi->ptr, "mode", SC_MODE_DISTORTION);
RNA_boolean_set(kmi->ptr, "toggle", 1);
+ /* ******** Hotkeys avalaible for main region only ******** */
+
+ keymap= WM_keymap_find(keyconf, "Clip Editor", SPACE_CLIP, 0);
+
/* ** View/navigation ** */
WM_keymap_add_item(keymap, "CLIP_OT_view_pan", MIDDLEMOUSE, KM_PRESS, 0, 0);