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-11-23 05:55:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-23 05:55:33 +0300
commit1fcb3e791f320563a997c83c3ea3063b606f17b8 (patch)
tree6f2e0e828836a63d3db8c8574b44e1ee691df327 /release/scripts/startup/bl_ui/properties_constraint.py
parentd56c0a0a6affcdfd7335c5fce1892a82f23bdf37 (diff)
Cleanup: single quote enums
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_constraint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_constraint.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py
index dcd84d105ad..b1f2c43c933 100644
--- a/release/scripts/startup/bl_ui/properties_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_constraint.py
@@ -926,7 +926,7 @@ class ConstraintButtonsPanel:
if not con.targets:
box = topcol.box()
- box.label(text="No target bones were added", icon="ERROR")
+ box.label(text="No target bones were added", icon='ERROR')
for i, tgt in enumerate(con.targets):
box = topcol.box()
@@ -944,9 +944,9 @@ class ConstraintButtonsPanel:
if has_target:
row.prop_search(tgt, "subtarget", tgt.target.data, "bones", text="")
else:
- row.prop(tgt, "subtarget", text="", icon="BONE_DATA")
+ row.prop(tgt, "subtarget", text="", icon='BONE_DATA')
- header.operator("constraint.remove_target", icon="REMOVE", text="").index = i
+ header.operator("constraint.remove_target", text="", icon='REMOVE').index = i
col = box.column()
col.active = has_target and tgt.subtarget != ""