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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3f711ace97e..682af76500b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3954,7 +3954,7 @@ class VIEW3D_PT_overlay(Panel):
pass
-class VIEW3D_PT_overlay_manipulators(Panel):
+class VIEW3D_PT_overlay_gizmo(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'HEADER'
bl_parent_id = 'VIEW3D_PT_overlay'
@@ -3962,7 +3962,7 @@ class VIEW3D_PT_overlay_manipulators(Panel):
def draw_header(self, context):
view = context.space_data
- self.layout.prop(view, "show_manipulator", text="")
+ self.layout.prop(view, "show_gizmo", text="")
def draw(self, context):
layout = self.layout
@@ -3975,10 +3975,10 @@ class VIEW3D_PT_overlay_manipulators(Panel):
col.active = display_all
row = col.row(align=True)
- row.active = view.show_manipulator
- row.prop(view, "show_manipulator_navigate", text="Navigate", toggle=True)
- row.prop(view, "show_manipulator_context", text="Active Object", toggle=True)
- row.prop(view, "show_manipulator_tool", text="Active Tools", toggle=True)
+ row.active = view.show_gizmo
+ row.prop(view, "show_gizmo_navigate", text="Navigate", toggle=True)
+ row.prop(view, "show_gizmo_context", text="Active Object", toggle=True)
+ row.prop(view, "show_gizmo_tool", text="Active Tools", toggle=True)
class VIEW3D_PT_overlay_guides(Panel):
@@ -4818,7 +4818,7 @@ classes = (
VIEW3D_PT_shading_options_shadow,
VIEW3D_PT_shading_options_ssao,
VIEW3D_PT_overlay,
- VIEW3D_PT_overlay_manipulators,
+ VIEW3D_PT_overlay_gizmo,
VIEW3D_PT_overlay_guides,
VIEW3D_PT_overlay_object,
VIEW3D_PT_overlay_geometry,