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:
authorAlan Odom <clockmender@icloud.com>2020-02-04 15:51:17 +0300
committerRune Morling <ermo.blender.org@spammesenseless.net>2020-02-04 16:25:53 +0300
commit1a6900ade707f3d634f7693e47a7c89c12ab37a8 (patch)
tree222631af250175ce968841230556c30da024b345 /precision_drawing_tools/__init__.py
parent2a4f0769e5c69ec3dd6173deacbf1de79f17d2a5 (diff)
PDT: Docstring fixes and a small bug fix
All Docstrings have been examined for typos and format, etc. Small code change to set Selection Mode to "SEL" if operation is not "C" or "P" to avoid possible errors when using other operations.
Diffstat (limited to 'precision_drawing_tools/__init__.py')
-rw-r--r--precision_drawing_tools/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/precision_drawing_tools/__init__.py b/precision_drawing_tools/__init__.py
index bb0245dc..7adb7c1a 100644
--- a/precision_drawing_tools/__init__.py
+++ b/precision_drawing_tools/__init__.py
@@ -359,9 +359,9 @@ class PDTSceneProperties(PropertyGroup):
name="Pivot Factor", min=0.4, max=10, default=2, precision=1, description=PDT_DES_PPSIZE
)
pivot_width: IntProperty(name="Width", min=1, max=5, default=2, description=PDT_DES_PPWIDTH)
- # FIXME: might as well become pivot_angle
+
pivot_ang: FloatProperty(name="Pivot Angle", min=-180, max=180, default=0.0)
- # FIXME: pivot_dist for consistency?
+
pivot_dis: FloatProperty(
name="Pivot Dist", default=0.0, min=0, update=scale_set, description=PDT_DES_PIVOTDIS,
)