[Bf-blender-cvs] [3002670332a] master: Fix T104368: Incorrect tooltip text in Blender 3.4.1's Preferences > File Paths > Scripts field.

Bastien Montagne noreply at git.blender.org
Tue Feb 7 09:52:09 CET 2023


Commit: 3002670332afffb3b662ae839fc568eb5903af51
Author: Bastien Montagne
Date:   Tue Feb 7 09:50:50 2023 +0100
Branches: master
https://developer.blender.org/rB3002670332afffb3b662ae839fc568eb5903af51

Fix T104368: Incorrect tooltip text in Blender 3.4.1's Preferences > File Paths > Scripts field.

Use backticks to cleary identify 'path' parts of this tooltip.

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

M	source/blender/makesrna/intern/rna_userdef.c

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 7ebc5c425f5..12e86bb0129 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -6227,7 +6227,7 @@ static void rna_def_userdef_filepaths(BlenderRNA *brna)
       prop,
       "Python Scripts Directory",
       "Alternate script path, matching the default layout with subdirectories: "
-      "startup, add-ons, modules, and presets (requires restart)");
+      "`startup`, `addons`, `modules`, and `presets` (requires restart)");
   /* TODO: editing should reset sys.path! */
 
   prop = RNA_def_property(srna, "i18n_branches_directory", PROP_STRING, PROP_DIRPATH);



More information about the Bf-blender-cvs mailing list