From 9f84d5e546084e6d4360f421f35f34560c1ff4ee Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 17 Dec 2015 14:54:06 +1100 Subject: 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. --- release/scripts/startup/bl_ui/space_view3d.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'release') 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): -- cgit v1.2.3