[Bf-blender-cvs] [5c630f8256f] master: UI: Rename 'Use Lib Path' to 'Use Library Path' in particle settings.

Pablo Vazquez noreply at git.blender.org
Fri Mar 8 15:50:45 CET 2019


Commit: 5c630f8256fcf798b59c20a870282668ec8f2d4c
Author: Pablo Vazquez
Date:   Fri Mar 8 15:50:36 2019 +0100
Branches: master
https://developer.blender.org/rB5c630f8256fcf798b59c20a870282668ec8f2d4c

UI: Rename 'Use Lib Path' to 'Use Library Path' in particle settings.

Also align items in the column since they work together.

===================================================================

M	release/scripts/startup/bl_ui/properties_physics_common.py

===================================================================

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



More information about the Bf-blender-cvs mailing list