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>2014-07-23 22:59:13 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-07-23 22:59:40 +0400
commitffea67ca57a9a8e9876f7140037b0818ac99b4b9 (patch)
tree29e4a2188025baff312d7ecfaef1616b509caef1 /source/blender/editors/sculpt_paint/paint_curve.c
parent15b5f84a1e032b4979313151a67b00cd976b9316 (diff)
Updates/fixes for new UI messages.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_curve.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_curve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_curve.c b/source/blender/editors/sculpt_paint/paint_curve.c
index 6ca0a041388..5c11ae8ecb6 100644
--- a/source/blender/editors/sculpt_paint/paint_curve.c
+++ b/source/blender/editors/sculpt_paint/paint_curve.c
@@ -562,7 +562,7 @@ void PAINTCURVE_OT_select(wmOperatorType *ot)
/* properties */
RNA_def_int_vector(ot->srna, "location", 2, NULL, 0, SHRT_MAX,
"Location", "Location of vertex in area space", 0, SHRT_MAX);
- prop = RNA_def_boolean(ot->srna, "toggle", false, "Toggle", "Select/Deselect all");
+ prop = RNA_def_boolean(ot->srna, "toggle", false, "Toggle", "(De)select all");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
prop = RNA_def_boolean(ot->srna, "extend", false, "Extend", "Extend selection");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);