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 'mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py')
-rw-r--r--mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py b/mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py
index 534740a1..7afe80fe 100644
--- a/mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py
+++ b/mesh_extra_tools/mesh_select_tools/mesh_select_by_type.py
@@ -32,14 +32,14 @@ class DATA_OP_facetype_select(Operator):
bl_description = "Select all faces of a certain type"
bl_options = {'REGISTER', 'UNDO'}
- face_type = EnumProperty(
+ face_type: EnumProperty(
name="Select faces:",
items=(("3", "Triangles", "Faces made up of 3 vertices"),
("4", "Quads", "Faces made up of 4 vertices"),
("5", "Ngons", "Faces made up of 5 and more vertices")),
default="5"
)
- extend = BoolProperty(
+ extend: BoolProperty(
name="Extend",
description="Extend Selection",
default=False