From 1fcb3e791f320563a997c83c3ea3063b606f17b8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 23 Nov 2018 13:55:33 +1100 Subject: Cleanup: single quote enums --- release/scripts/startup/bl_ui/properties_constraint.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release/scripts/startup/bl_ui/properties_constraint.py') 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 != "" -- cgit v1.2.3