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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-10-12 22:34:14 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-10-12 22:34:14 +0300
commitcee8a3148ca6c4c970a6f4e2b5c896b11d877496 (patch)
tree4c1b53be1302810cb3bea2a39e7d53b1fc8f32fb /source/blender/makesrna/intern/rna_actuator.c
parentcdd727b7ceab5772503b702322e93620b7df651b (diff)
Usual UI message fixes...
Diffstat (limited to 'source/blender/makesrna/intern/rna_actuator.c')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index 01ca352c2a8..b425a454d33 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -1723,8 +1723,8 @@ static void rna_def_game_actuator(BlenderRNA *brna)
/* ACT_GAME_LOAD */
prop = RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
RNA_def_property_ui_text(prop, "File",
- "The file to use depending on the mode (e.g., the blend file to load or a destination "
- "for saving a screenshot). Use the \"//\" prefix for a relative path");
+ "The file to use, depending on the mode (e.g. the blend file to load or a destination "
+ "for saving a screenshot) - use the \"//\" prefix for a relative path");
RNA_def_property_update(prop, NC_LOGIC, NULL);
/*XXX to do: an operator that calls file_browse with relative_path on and blender filtering active */
}