diff --git a/Nez.Portable/UI/Widgets/TextButton.cs b/Nez.Portable/UI/Widgets/TextButton.cs index ae9c66d84..7e05a4e8a 100644 --- a/Nez.Portable/UI/Widgets/TextButton.cs +++ b/Nez.Portable/UI/Widgets/TextButton.cs @@ -121,7 +121,8 @@ public class TextButtonStyle : ButtonStyle /** Optional. */ public Color FontColor = Color.White; public Color? DownFontColor, OverFontColor, CheckedFontColor, CheckedOverFontColor, DisabledFontColor; - public float FontScaleX, FontScaleY = 1; + public float FontScaleX = 1; + public float FontScaleY = 1; public float FontScale { set { FontScaleX = value; FontScaleY = value; } }