From 5c630f8256fcf798b59c20a870282668ec8f2d4c Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Fri, 8 Mar 2019 15:50:36 +0100 Subject: UI: Rename 'Use Lib Path' to 'Use Library Path' in particle settings. Also align items in the column since they work together. --- release/scripts/startup/bl_ui/properties_physics_common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '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 -- cgit v1.2.3