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>2015-12-17 06:54:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-17 06:58:21 +0300
commit9f84d5e546084e6d4360f421f35f34560c1ff4ee (patch)
tree543d378f9915d0bd7210b8785c78d43ecc34ba74 /release
parentd970f02ee162c2bb3191fb17d7be85ad71becbfc (diff)
Revert "3D Cursor: Add option to lock it in place to prevent accidental modification"
This reverts commit a791153ca5e6f87d50396e188a3664b579884161. Rather users get feedback on changing cursor-depth, instead of preventing 3d-cursor placement entirely.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index da4fb04cb5d..4dc4b667a63 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3005,12 +3005,7 @@ class VIEW3D_PT_view3d_cursor(Panel):
layout = self.layout
view = context.space_data
-
- layout.prop(view, "lock_cursor_location")
-
- col = layout.column()
- col.active = not view.lock_cursor_location
- col.prop(view, "cursor_location", text="Location")
+ layout.column().prop(view, "cursor_location", text="Location")
class VIEW3D_PT_view3d_name(Panel):