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-08-28 06:41:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-28 06:41:47 +0300
commite1ec93ce7593c0bff6a942bde73d8e12b40f3d30 (patch)
tree90e841f8100e94f0c7a1d7527f85fb2ab2a3af30 /release/scripts/startup/bl_ui/properties_physics_common.py
parent268cdb503fc6a4ac0437222cf84aae789fec89c8 (diff)
UI: use keyword arguments
Prepare for keyword only args.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index 06df096cfea..ff48197b8e2 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -194,7 +194,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
subcol = col.column()
subcol.active = cache.use_disk_cache
- subcol.prop(cache, "use_library_path", "Use Lib Path")
+ subcol.prop(cache, "use_library_path", text="Use Lib Path")
col = flow.column()
col.active = cache.use_disk_cache