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>2013-05-30 15:37:53 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-05-30 15:37:53 +0400
commit79f5a013be6efff5484b9a4cd6f9d7be0b7232af (patch)
treedc4b24a5560667df1c1310c73102482f755de4e9 /release
parentb0cf3a342d81ca8bcd44c50b2e35af4d22fab802 (diff)
Patch #35464: Marker placement for motion tracker by clicking on a desired location
Now button in the toolshelf behaves this way: - User clicks on "Add Marker" - Then he clicks where the marker should get placed Patch by Marcos Couto (ocf) with own modifications.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index c68d2a75ac4..46ffe6bb68a 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -211,7 +211,7 @@ class CLIP_PT_tools_marker(CLIP_PT_tracking_panel, Panel):
settings = clip.tracking.settings
col = layout.column(align=True)
- props = col.operator("clip.add_marker_at_center", text="Add Marker")
+ props = col.operator("clip.add_marker_at_click", text="Add Marker")
col.operator("clip.detect_features")
col.operator("clip.delete_track")