[Bf-blender-cvs] [646ef6e1577] master: UI: Avoid the word "Use" in checkbox labels

Pablo Vazquez noreply at git.blender.org
Wed Aug 17 22:23:53 CEST 2022


Commit: 646ef6e157749a0b716ccf5601425ee9fa8da6ec
Author: Pablo Vazquez
Date:   Wed Aug 17 22:14:28 2022 +0200
Branches: master
https://developer.blender.org/rB646ef6e157749a0b716ccf5601425ee9fa8da6ec

UI: Avoid the word "Use" in checkbox labels

As per the writing styles guidelines.
https://wiki.blender.org/wiki/Human_Interface_Guidelines/Writing_Style

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index d4aea581a55..44aefc5a374 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -652,7 +652,7 @@ class USERPREF_PT_system_video_sequencer(SystemPanel, CenterAlignMixIn, Panel):
 
         layout.separator()
 
-        layout.prop(system, "use_sequencer_disk_cache")
+        layout.prop(system, "use_sequencer_disk_cache", text="Disk Cache")
         col = layout.column()
         col.active = system.use_sequencer_disk_cache
         col.prop(system, "sequencer_disk_cache_dir", text="Directory")



More information about the Bf-blender-cvs mailing list