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

Also align items in the column since they work together.
This commit is contained in:
Pablo Vazquez 2019-03-08 15:50:36 +01:00
parent 50a8a95ce3
commit 5c630f8256
1 changed files with 2 additions and 2 deletions

View File

@ -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