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-07-19 09:06:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-19 09:06:37 +0300
commit9df1e54079344ed4e2becef9e57cf1b925b46dff (patch)
tree09014669c19f24015ab924f612d30a20ddb79939 /release/scripts/startup/bl_ui/properties_physics_common.py
parent34a45c54e00c18da06df97674e1d614c24ae58bf (diff)
Cleanup: style
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index bed5617c76c..2da84ad84da 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -132,7 +132,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
cache_info = cache.info
if cache_info:
col = layout.column()
- col.alignment = "RIGHT"
+ col.alignment = 'RIGHT'
col.label(text=cache_info)
else:
if cachetype in {'SMOKE', 'DYNAMIC_PAINT'}:
@@ -156,7 +156,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
cache_info = cache.info
if cachetype != 'SMOKE' and cache_info: # avoid empty space.
col = layout.column(align=True)
- col.alignment = "RIGHT"
+ col.alignment = 'RIGHT'
col.label(text=cache_info)
can_bake = True
@@ -186,7 +186,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
can_bake = False
col = layout.column(align=True)
- col.alignment = "RIGHT"
+ col.alignment = 'RIGHT'
col.separator()