[Bf-blender-cvs] [6c0240e84a2] master: UI: clarify "Remap Relative" tooltip

Campbell Barton noreply at git.blender.org
Mon Mar 18 03:59:09 CET 2019


Commit: 6c0240e84a2c06af506697242e0ba42fa4998ee5
Author: Campbell Barton
Date:   Mon Mar 18 13:57:16 2019 +1100
Branches: master
https://developer.blender.org/rB6c0240e84a2c06af506697242e0ba42fa4998ee5

UI: clarify "Remap Relative" tooltip

Resolves T62612

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

M	source/blender/python/intern/bpy_library_write.c
M	source/blender/windowmanager/intern/wm_files.c

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

diff --git a/source/blender/python/intern/bpy_library_write.c b/source/blender/python/intern/bpy_library_write.c
index 3b2afb42cdb..7b7457bc4b3 100644
--- a/source/blender/python/intern/bpy_library_write.c
+++ b/source/blender/python/intern/bpy_library_write.c
@@ -57,7 +57,7 @@ PyDoc_STRVAR(bpy_lib_write_doc,
 "   :type filepath: string\n"
 "   :arg datablocks: set of data-blocks (:class:`bpy.types.ID` instances).\n"
 "   :type datablocks: set\n"
-"   :arg relative_remap: When True, remap the paths relative to the current blend-file.\n"
+"   :arg relative_remap: When True, make paths relative to the current blend-file.\n"
 "   :type relative_remap: bool\n"
 "   :arg fake_user: When True, data-blocks will be written with fake-user flag enabled.\n"
 "   :type fake_user: bool\n"
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index acc680014f4..7357a4c3b57 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -2299,7 +2299,7 @@ void WM_OT_save_as_mainfile(wmOperatorType *ot)
 	        WM_FILESEL_FILEPATH, FILE_DEFAULTDISPLAY, FILE_SORT_ALPHA);
 	RNA_def_boolean(ot->srna, "compress", false, "Compress", "Write compressed .blend file");
 	RNA_def_boolean(ot->srna, "relative_remap", true, "Remap Relative",
-	                "Remap relative paths when saving in a different directory");
+	                "Make paths relative when saving to a different directory");
 	prop = RNA_def_boolean(ot->srna, "copy", false, "Save Copy",
 	                "Save a copy of the actual working state but does not make saved file active");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
@@ -2358,7 +2358,7 @@ void WM_OT_save_mainfile(wmOperatorType *ot)
 	        WM_FILESEL_FILEPATH, FILE_DEFAULTDISPLAY, FILE_SORT_ALPHA);
 	RNA_def_boolean(ot->srna, "compress", false, "Compress", "Write compressed .blend file");
 	RNA_def_boolean(ot->srna, "relative_remap", false, "Remap Relative",
-	                "Remap relative paths when saving in a different directory");
+	                "Make paths relative when saving to a different directory");
 
 	prop = RNA_def_boolean(ot->srna, "exit", false, "Exit", "Exit Blender after saving");
 	RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);



More information about the Bf-blender-cvs mailing list