Skip to content

Commit 939004b

Browse files
committed
Minor refactor changes
1 parent eaafc48 commit 939004b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Assets/Editor Toolbox/Runtime/Attributes/Toolbox/DecoratorAttributes/BeginHorizontalAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class BeginHorizontalAttribute : ToolboxDecoratorAttribute
1313
public BeginHorizontalAttribute()
1414
{ }
1515

16-
[Obsolete("Ratios are no longer valid, use ControlFieldWidth and linked properties to specify width of layout elements.")]
16+
[Obsolete("Ratios are no longer valid, use default constructor, ControlFieldWidth and linked properties to specify width of layout elements.")]
1717
public BeginHorizontalAttribute(float labelToWidthRatio = 0.0f, float fieldToWidthRatio = 0.0f)
1818
{
1919
LabelToWidthRatio = labelToWidthRatio;

Assets/Editor Toolbox/Runtime/Attributes/Toolbox/DecoratorAttributes/BeginHorizontalGroupAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public BeginHorizontalGroupAttribute() : base()
1717
WidthOffset = 32.0f;
1818
}
1919

20-
[Obsolete("Ratios are no longer valid, use ControlFieldWidth and linked properties to specify width of layout elements.")]
20+
[Obsolete("Ratios are no longer valid, use default constructor, ControlFieldWidth and linked properties to specify width of layout elements.")]
2121
public BeginHorizontalGroupAttribute(float labelToWidthRatio = 0.0f, float fieldToWidthRatio = 0.0f, string label = null) : base(labelToWidthRatio, fieldToWidthRatio)
2222
{
2323
Label = label;

0 commit comments

Comments
 (0)