[Bf-extensions-cvs] [fa7f7ca3] master: Fix T54719: Letter 'S' with different meaning in different context cannot be used in a multi-lingual environment.

Bastien Montagne noreply at git.blender.org
Tue Feb 12 21:41:41 CET 2019


Commit: fa7f7ca3ba34ae832666d45f7ce37af5a4dc3946
Author: Bastien Montagne
Date:   Tue Feb 12 21:40:38 2019 +0100
Branches: master
https://developer.blender.org/rBAfa7f7ca3ba34ae832666d45f7ce37af5a4dc3946

Fix T54719: Letter 'S' with different meaning in different context cannot be used in a multi-lingual environment.

Do not use single letters in labels, ever. Unless they are totally
accepted and common in that sense (rgb, hsv, xyz).

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

M	mocap/__init__.py

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

diff --git a/mocap/__init__.py b/mocap/__init__.py
index c9d8bf0b..cc2a9a2c 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -85,11 +85,11 @@ class MocapConstraint(bpy.types.PropertyGroup):
         default="",
         description="Other Constrained Bone (optional, depends on type)",
         update=mocap_constraints.setConstraint)
-    s_frame: IntProperty(name="S",
+    s_frame: IntProperty(name="Start",
         default=0,
         description="Start frame of Fix",
         update=mocap_constraints.setConstraint)
-    e_frame: IntProperty(name="E",
+    e_frame: IntProperty(name="End",
         default=100,
         description="End frame of Fix",
         update=mocap_constraints.setConstraint)



More information about the Bf-extensions-cvs mailing list