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>2019-03-04 14:06:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-04 14:11:06 +0300
commit270fd28496f7277d0685d0ee03fea23ab39e3aaa (patch)
tree1554b0958c4e73a10dcb4864abb393dd9d948798 /release/scripts/startup/bl_ui/properties_data_bone.py
parent2644e4f8f49b1224c7f32990185d7c063b3794d0 (diff)
Cleanup: use single quotes for enums
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_bone.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index 9209d449103..0af51ddd5ba 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -171,14 +171,14 @@ class BONE_PT_curved(BoneButtonsPanel, Panel):
col.prop(bone, "bbone_handle_type_start", text="Start Handle")
col = col.column(align=True)
- col.active = (bone.bbone_handle_type_start != "AUTO")
+ col.active = (bone.bbone_handle_type_start != 'AUTO')
col.prop_search(bone, "bbone_custom_handle_start", arm, bone_list, text="Custom")
col = topcol.column(align=True)
col.prop(bone, "bbone_handle_type_end", text="End Handle")
col = col.column(align=True)
- col.active = (bone.bbone_handle_type_end != "AUTO")
+ col.active = (bone.bbone_handle_type_end != 'AUTO')
col.prop_search(bone, "bbone_custom_handle_end", arm, bone_list, text="Custom")