Usual UI messages fixes...

This commit is contained in:
Bastien Montagne 2013-04-29 14:09:19 +00:00
parent 903f9b98f5
commit 5c5ecc3465
3 changed files with 5 additions and 3 deletions

@ -135,6 +135,7 @@ class SpellChecker():
"resize", "resize",
"restpose", "restpose",
"retarget", "retargets", "retargeting", "retargeted", "retarget", "retargets", "retargeting", "retargeted",
"rigidbody",
"ringnoise", "ringnoise",
"rolloff", "rolloff",
"runtime", "runtime",

@ -93,8 +93,8 @@ class VIEW3D_OT_edit_mesh_extrude_move(Operator):
class VIEW3D_OT_select_or_deselect_all(Operator): class VIEW3D_OT_select_or_deselect_all(Operator):
"Select element under the mouse, delect everything is there's nothing under the mouse" "Select element under the mouse, deselect everything is there's nothing under the mouse"
bl_label = "Select or Delect All" bl_label = "Select or Deselect All"
bl_idname = "view3d.select_or_deselect_all" bl_idname = "view3d.select_or_deselect_all"
extend = BoolProperty( extend = BoolProperty(

@ -603,7 +603,8 @@ static void rna_RigidBodyWorld_convex_sweep_test(RigidBodyWorld *rbw, ReportList
if (rbw->physics_world != NULL && rob->physics_object != NULL) { if (rbw->physics_world != NULL && rob->physics_object != NULL) {
RB_world_convex_sweep_test(rbw->physics_world, rob->physics_object, ray_start, ray_end, r_location, r_hitpoint, r_normal, r_hit); RB_world_convex_sweep_test(rbw->physics_world, rob->physics_object, ray_start, ray_end, r_location, r_hitpoint, r_normal, r_hit);
if (*r_hit == -2) { if (*r_hit == -2) {
BKE_report(reports, RPT_ERROR, "A non convex collision shape was passed to the function. Use only convex collision shapes."); BKE_report(reports, RPT_ERROR,
"A non convex collision shape was passed to the function, use only convex collision shapes");
} }
} }
else { else {