Skip to content

Commit

Permalink
Fix spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimecbernardo committed Feb 5, 2025
1 parent 92169b4 commit 50279f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ LRESULT CALLBACK Highlighter::MouseHookProc(int nCode, WPARAM wParam, LPARAM lPa
}
if (instance->m_leftButtonPressed)
{
// There might be a stray point from the user unpressing the mouse button on an elevated window, which wasn't caught by us.
// There might be a stray point from the user releasing the mouse button on an elevated window, which wasn't caught by us.
instance->StartDrawingPointFading(MouseButton::Left);
}
instance->AddDrawingPoint(MouseButton::Left);
Expand All @@ -297,7 +297,7 @@ LRESULT CALLBACK Highlighter::MouseHookProc(int nCode, WPARAM wParam, LPARAM lPa
}
if (instance->m_rightButtonPressed)
{
// There might be a stray point from the user unpressing the mouse button on an elevated window, which wasn't caught by us.
// There might be a stray point from the user releasing the mouse button on an elevated window, which wasn't caught by us.
instance->StartDrawingPointFading(MouseButton::Right);
}
instance->AddDrawingPoint(MouseButton::Right);
Expand Down

0 comments on commit 50279f7

Please sign in to comment.