Fix T86209: Preference Defaults "Relative Paths" tooltip could be improved.

This UserPref setting is only used when no path is set yet.
This commit is contained in:
Bastien Montagne 2021-03-04 12:20:10 +01:00
parent 06d33a6876
commit bda95ac0f9
1 changed files with 3 additions and 1 deletions

View File

@ -6062,7 +6062,9 @@ static void rna_def_userdef_filepaths(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_relative_paths", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_RELPATHS);
RNA_def_property_ui_text(
prop, "Relative Paths", "Default relative path option for the file selector");
prop,
"Relative Paths",
"Default relative path option for the file selector, when no path is defined yet");
prop = RNA_def_property(srna, "use_file_compression", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_FILECOMPRESS);