Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix crash
  • Loading branch information
cristeigabriela committed Dec 25, 2023
commit eaa990cdf306ca2009ea67f7634944937108e2f1
2 changes: 1 addition & 1 deletion ReClass.NET/Controls/HotSpotTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected override bool ProcessCmdKey(ref Message m, Keys keyData)
else
{
selectionInText += 1;
while (selectionInText > 0 && !selectionPredicate(currChar()))
while (selectionInText < maxSelectionStart && !selectionPredicate(currChar()))
{
selectionInText += 1;
}
Expand Down