fix reflection bug (#548)

* fix reflection bug

* fix
This commit is contained in:
YHH
2018-09-18 11:49:20 +10:00
committed by Dylan Wilson
parent 5c791897a6
commit 36efebeba4
2 changed files with 6 additions and 1 deletions
@@ -15,6 +15,11 @@ namespace MonoGame.Extended.Gui.Controls
HorizontalTextAlignment = HorizontalAlignment.Left;
}
public TextBox()
: this(null)
{
}
public int SelectionStart { get; set; }
public char? PasswordCharacter { get; set; }
+1 -1
View File
@@ -133,7 +133,7 @@ namespace MonoGame.Extended.Gui
// }
//}
private void UpdateControl(Control control, float deltaSeconds)
public void UpdateControl(Control control, float deltaSeconds)
{
if (control.IsVisible)
{