Skip to content

Commit

Permalink
0.4.1.2 Fix key press issues on <60fps
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidPack committed Feb 17, 2018
1 parent 30d38c5 commit 5582b02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions UI/UITextbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ public void Focus()
{
if (!focused)
{
Main.clrInput();
focused = true;
// Main.blockInput = true;
// Main.clrInput();
Main.blockInput = true;
timer = 0f;
//eventSet = true;
}
Expand All @@ -126,7 +126,7 @@ public void Unfocus()
if (focused)
{
focused = false;
// Main.blockInput = false;
Main.blockInput = false;

OnLostFocus?.Invoke(this, EventArgs.Empty);
}
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = jopojelly, jofairden, rrryutaro
version = 0.4.1.1
version = 0.4.1.2
displayName = Cheat Sheet
homepage = http://forums.terraria.org/index.php?threads/cheat-sheet.41407/
buildIgnore = .vs\*, Properties\*, *.csproj, *.user, obj\*, bin\*, *.config, .git\*
Expand Down

0 comments on commit 5582b02

Please sign in to comment.