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:
authorMatt Ebb <matt@mke3.net>2010-03-17 03:05:40 +0300
committerMatt Ebb <matt@mke3.net>2010-03-17 03:05:40 +0300
commit724418f33afc62006c31f6ed8c175849b0400dba (patch)
treef7b0d0edef3a6ff2600e096de7193377bcc58345 /release/scripts
parentb3e48fed5d02176b7b393ed47b0483696b5db389 (diff)
Fix [#21114] Graphical cursor displayed in wrong position when switching to local ortho.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 3c0d6940da8..6311626b975 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1854,7 +1854,7 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel):
col.prop(view, "clip_start", text="Start")
col.prop(view, "clip_end", text="End")
- layout.column().prop(scene, "cursor_location", text="3D Cursor:")
+ layout.column().prop(view, "cursor_location")
class VIEW3D_PT_3dview_name(bpy.types.Panel):