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).
This commit is contained in:
Bastien Montagne 2019-02-12 21:40:38 +01:00
parent 00e74bb22d
commit fa7f7ca3ba
Notes: blender-bot 2023-02-14 05:59:32 +01:00
Referenced by issue blender/blender#54719, Letter 'S' with different meaning in different context cannot be used in a multi-lingual environment
1 changed files with 2 additions and 2 deletions

View File

@ -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)