Skip to content

Commit 50279f7

Browse files
Fix spellcheck
1 parent 92169b4 commit 50279f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ LRESULT CALLBACK Highlighter::MouseHookProc(int nCode, WPARAM wParam, LPARAM lPa
273273
}
274274
if (instance->m_leftButtonPressed)
275275
{
276-
// There might be a stray point from the user unpressing the mouse button on an elevated window, which wasn't caught by us.
276+
// There might be a stray point from the user releasing the mouse button on an elevated window, which wasn't caught by us.
277277
instance->StartDrawingPointFading(MouseButton::Left);
278278
}
279279
instance->AddDrawingPoint(MouseButton::Left);
@@ -297,7 +297,7 @@ LRESULT CALLBACK Highlighter::MouseHookProc(int nCode, WPARAM wParam, LPARAM lPa
297297
}
298298
if (instance->m_rightButtonPressed)
299299
{
300-
// There might be a stray point from the user unpressing the mouse button on an elevated window, which wasn't caught by us.
300+
// There might be a stray point from the user releasing the mouse button on an elevated window, which wasn't caught by us.
301301
instance->StartDrawingPointFading(MouseButton::Right);
302302
}
303303
instance->AddDrawingPoint(MouseButton::Right);

0 commit comments

Comments
 (0)