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:
authorPablo Vazquez <contact@pablovazquez.art>2019-03-08 17:50:36 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-03-08 17:50:43 +0300
commit5c630f8256fcf798b59c20a870282668ec8f2d4c (patch)
tree94fc246bfc732449346e46163039213470578c18 /release
parent50a8a95ce3f88303f29fa8839ef37b372df5ce49 (diff)
UI: Rename 'Use Lib Path' to 'Use Library Path' in particle settings.
Also align items in the column since they work together.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index b1c455c697c..bd8aab8f352 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -189,12 +189,12 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
flow.enabled = enabled and is_saved
- col = flow.column()
+ col = flow.column(align=True)
col.prop(cache, "use_disk_cache")
subcol = col.column()
subcol.active = cache.use_disk_cache
- subcol.prop(cache, "use_library_path", text="Use Lib Path")
+ subcol.prop(cache, "use_library_path", text="Use Library Path")
col = flow.column()
col.active = cache.use_disk_cache