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:
authorCampbell Barton <ideasman42@gmail.com>2018-09-03 07:15:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-03 07:15:18 +0300
commitba21c27e7659b8a279596f88295d5ac3183cfc8c (patch)
treea5ab3a1b420d616dd1638780c2e2d4ec94254539 /release/scripts/startup/bl_operators/vertexpaint_dirt.py
parent0be6146d2628b091ac8954a46673fc32d980b626 (diff)
Cleanup: use single quotes for enum's
Diffstat (limited to 'release/scripts/startup/bl_operators/vertexpaint_dirt.py')
-rw-r--r--release/scripts/startup/bl_operators/vertexpaint_dirt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/vertexpaint_dirt.py b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
index 335c3d8bbda..e0bc5286bfe 100644
--- a/release/scripts/startup/bl_operators/vertexpaint_dirt.py
+++ b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
@@ -155,14 +155,14 @@ class VertexPaintDirt(Operator):
description="Less than 90 limits the angle used in the tonal range",
min=0.0, max=pi,
default=pi,
- unit="ROTATION",
+ unit='ROTATION',
)
dirt_angle: FloatProperty(
name="Dirt Angle",
description="Less than 90 limits the angle used in the tonal range",
min=0.0, max=pi,
default=0.0,
- unit="ROTATION",
+ unit='ROTATION',
)
dirt_only: BoolProperty(
name="Dirt Only",