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
this makes more sense
  • Loading branch information
cristeigabriela committed Dec 25, 2023
commit 31ea9bc2fcc06b62a32fdc648b978d3527224a65
4 changes: 1 addition & 3 deletions ReClass.NET/Controls/HotSpotTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ protected override void OnVisibleChanged(EventArgs e)

protected override bool ProcessCmdKey(ref Message m, Keys keyData)
{
bool state = base.ProcessCmdKey(ref m, keyData);

// Checks if we're on some address.
var selectionPredicate = (char c) =>
{
Expand Down Expand Up @@ -132,7 +130,7 @@ protected override bool ProcessCmdKey(ref Message m, Keys keyData)
}
}

return state;
return base.ProcessCmdKey(ref m, keyData);
}

protected override void OnKeyDown(KeyEventArgs e)
Expand Down