Fixed Bug

Typing went to all Textbox controls
This commit is contained in:
JacobTech 2023-01-01 23:27:16 -05:00
parent caeda301bc
commit a88fef1f80
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@
<IncludeSymbols>False</IncludeSymbols> <IncludeSymbols>False</IncludeSymbols>
<RepositoryUrl>https://git.jacobtech.com/JacobTech.com/GraphicsManager</RepositoryUrl> <RepositoryUrl>https://git.jacobtech.com/JacobTech.com/GraphicsManager</RepositoryUrl>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<Version>1.0.0-alpha6</Version> <Version>1.0.0-alpha7</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -121,6 +121,7 @@ public class Textbox : IRenderObject
private void WindowOnTextInput(TextInputEventArgs obj) private void WindowOnTextInput(TextInputEventArgs obj)
{ {
if (!use) return;
Text += obj.AsString; Text += obj.AsString;
} }