Skip to content

Commit

Permalink
Minor refactor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
arimger committed Apr 5, 2024
1 parent eaafc48 commit 939004b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class BeginHorizontalAttribute : ToolboxDecoratorAttribute
public BeginHorizontalAttribute()
{ }

[Obsolete("Ratios are no longer valid, use ControlFieldWidth and linked properties to specify width of layout elements.")]
[Obsolete("Ratios are no longer valid, use default constructor, ControlFieldWidth and linked properties to specify width of layout elements.")]
public BeginHorizontalAttribute(float labelToWidthRatio = 0.0f, float fieldToWidthRatio = 0.0f)
{
LabelToWidthRatio = labelToWidthRatio;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public BeginHorizontalGroupAttribute() : base()
WidthOffset = 32.0f;
}

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

0 comments on commit 939004b

Please sign in to comment.