Skip to content

Commit

Permalink
Add Scrolling To Text Boxes (#126)
Browse files Browse the repository at this point in the history
* Add Scrolling To Text Boxes

* Small Fixes

* Re-Add Char Guessing Support
  • Loading branch information
TheBrokenRail authored May 27, 2024
1 parent 5af8f9c commit 78ae969
Show file tree
Hide file tree
Showing 3 changed files with 282 additions and 117 deletions.
2 changes: 1 addition & 1 deletion source/client/gui/Screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void Screen::keyPressed(int key)
for (int i = 0; i < int(m_textInputs.size()); i++)
{
TextInputBox* textInput = m_textInputs[i];
textInput->keyPressed(m_pMinecraft, key);
textInput->keyPressed(key);
}
}

Expand Down
Loading

0 comments on commit 78ae969

Please sign in to comment.