diff --git a/Bin/net40/SunnyUI.dll b/Bin/net40/SunnyUI.dll index 47967f15..bcf00e0b 100644 Binary files a/Bin/net40/SunnyUI.dll and b/Bin/net40/SunnyUI.dll differ diff --git a/SunnyUI/Controls/UICheckBoxGroup.cs b/SunnyUI/Controls/UICheckBoxGroup.cs index 7018d3b4..27c3aa02 100644 --- a/SunnyUI/Controls/UICheckBoxGroup.cs +++ b/SunnyUI/Controls/UICheckBoxGroup.cs @@ -117,7 +117,7 @@ namespace Sunny.UI box.Parent = this; box.Tag = i; box.Style = Style; - + box.IsScaled = IsScaled; box.ValueChanged += Box_ValueChanged; boxes.Add(box); } diff --git a/SunnyUI/Controls/UIRadioButtonGroup.cs b/SunnyUI/Controls/UIRadioButtonGroup.cs index 485f56d9..144941e9 100644 --- a/SunnyUI/Controls/UIRadioButtonGroup.cs +++ b/SunnyUI/Controls/UIRadioButtonGroup.cs @@ -97,7 +97,8 @@ namespace Sunny.UI Font = Font, Parent = this, Tag = i, - Style = Style + Style = Style, + IsScaled = IsScaled }; button.ValueChanged += Button_ValueChanged;