Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'space_view3d_pie_menus/pie_apply_transform_menu.py')
-rw-r--r--space_view3d_pie_menus/pie_apply_transform_menu.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/space_view3d_pie_menus/pie_apply_transform_menu.py b/space_view3d_pie_menus/pie_apply_transform_menu.py
index e22f23b4..a92920db 100644
--- a/space_view3d_pie_menus/pie_apply_transform_menu.py
+++ b/space_view3d_pie_menus/pie_apply_transform_menu.py
@@ -23,7 +23,7 @@ bl_info = {
"description": "Apply Transform Menu",
"author": "pitiwazou, meta-androcto",
"version": (0, 1, 1),
- "blender": (2, 77, 0),
+ "blender": (2, 80, 0),
"location": "3D View",
"warning": "",
"wiki_url": "",
@@ -49,15 +49,15 @@ class PieApplyTransforms(Menu):
# 4 - LEFT
pie.operator("apply.transformall", text="Apply All", icon='FREEZE')
# 6 - RIGHT
- pie.operator("clear.all", text="Clear All", icon='MANIPUL')
+ pie.operator("clear.all", text="Clear All", icon='NONE')
# 2 - BOTTOM
pie.operator("object.duplicates_make_real", text="Make Duplicates Real")
# 8 - TOP
- pie.operator("apply.transformlocrotscale", text="Rotation", icon='MAN_ROT').option = 'ROT'
+ pie.operator("apply.transformlocrotscale", text="Rotation", icon='NONE').option = 'ROT'
# 7 - TOP - LEFT
- pie.operator("apply.transformlocrotscale", text="Location", icon='MAN_ROT').option = 'LOC'
+ pie.operator("apply.transformlocrotscale", text="Location", icon='NONE').option = 'LOC'
# 9 - TOP - RIGHT
- pie.operator("apply.transformlocrotscale", text="Scale", icon='MAN_ROT').option = 'SCALE'
+ pie.operator("apply.transformlocrotscale", text="Scale", icon='NONE').option = 'SCALE'
# 1 - BOTTOM - LEFT
pie.operator("object.visual_transform_apply", text="Visual Transforms")
# 3 - BOTTOM - RIGHT
@@ -71,7 +71,7 @@ class ApplyTransLocRotPie(Operator):
bl_description = "Apply Transform: Location, Rotation or Scale"
bl_options = {'REGISTER', 'UNDO'}
- option = EnumProperty(
+ option: EnumProperty(
name="Type",
items=[
("LOC", "Location", "Apply Location"),
@@ -109,10 +109,10 @@ class ClearMenu(Menu):
def draw(self, context):
layout = self.layout
- layout.operator("object.location_clear", text="Clear Location", icon='MAN_TRANS')
- layout.operator("object.rotation_clear", text="Clear Rotation", icon='MAN_ROT')
- layout.operator("object.scale_clear", text="Clear Scale", icon='MAN_SCALE')
- layout.operator("object.origin_clear", text="Clear Origin", icon='MANIPUL')
+ layout.operator("object.location_clear", text="Clear Location", icon='NONE')
+ layout.operator("object.rotation_clear", text="Clear Rotation", icon='NONE')
+ layout.operator("object.scale_clear", text="Clear Scale", icon='NONE')
+ layout.operator("object.origin_clear", text="Clear Origin", icon='NONE')
# Clear all