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:
authorNBurn <7nburn@gmail.com>2019-01-18 00:48:54 +0300
committerNBurn <7nburn@gmail.com>2019-01-18 00:48:54 +0300
commitaeabdc02a83a976b2f594cd66873c6d2b537e669 (patch)
tree3ac5922be25219ab666aae4b8d04002bce2e70a6 /mesh_extra_tools/mesh_filletplus.py
parentba97e19e5b3df449784a4cc4ed89ce7b511ec3e4 (diff)
Update Add-ons class properties to annotations
This should take care of most of the class property conversions to use the new annotation format (colon instead of equals) for assignment. There may still be a few edge cases that were missed.
Diffstat (limited to 'mesh_extra_tools/mesh_filletplus.py')
-rw-r--r--mesh_extra_tools/mesh_filletplus.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/mesh_extra_tools/mesh_filletplus.py b/mesh_extra_tools/mesh_filletplus.py
index f3c9cbdf..bc38d2ea 100644
--- a/mesh_extra_tools/mesh_filletplus.py
+++ b/mesh_extra_tools/mesh_filletplus.py
@@ -297,7 +297,7 @@ class MESH_OT_fillet_plus(Operator):
"Note: Works on a mesh whose all faces share the same normal")
bl_options = {"REGISTER", "UNDO"}
- adj = FloatProperty(
+ adj: FloatProperty(
name="",
description="Size of the filleted corners",
default=0.1,
@@ -305,25 +305,25 @@ class MESH_OT_fillet_plus(Operator):
step=1,
precision=3
)
- n = IntProperty(
+ n: IntProperty(
name="",
description="Subdivision of the filleted corners",
default=3,
min=1, max=50,
step=1
)
- out = BoolProperty(
+ out: BoolProperty(
name="Outside",
description="Fillet towards outside",
default=False
)
- flip = BoolProperty(
+ flip: BoolProperty(
name="Flip",
description="Flip the direction of the Fillet\n"
"Only available if Outside option is not active",
default=False
)
- radius = BoolProperty(
+ radius: BoolProperty(
name="Radius",
description="Use radius for the size of the filleted corners",
default=False