Skip to content

Commit 32a26ee

Browse files
Marc-André Moreauawakecoding
Marc-André Moreau
authored andcommitted
fix RDP mouse jiggler disabling
1 parent ac68cfc commit 32a26ee

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

dll/ApiHooks.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -738,20 +738,23 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
738738
MsRdpEx_LogPrint(DEBUG, "Mouse Jiggler: Enabled=%d, Interval=%d, Method=%d",
739739
mouseJigglerEnabled ? 1 : 0, mouseJigglerInterval, mouseJigglerMethod);
740740

741-
uint32_t timerEventId = MOUSE_JIGGLER_MOVE_MOUSE_TIMER_ID;
742-
743-
switch (mouseJigglerMethod)
741+
if (mouseJigglerEnabled)
744742
{
743+
uint32_t timerEventId = MOUSE_JIGGLER_MOVE_MOUSE_TIMER_ID;
744+
745+
switch (mouseJigglerMethod)
746+
{
745747
case 0:
746748
timerEventId = MOUSE_JIGGLER_MOVE_MOUSE_TIMER_ID;
747749
break;
748750

749751
case 1:
750752
timerEventId = MOUSE_JIGGLER_SPECIAL_KEY_TIMER_ID;
751753
break;
752-
}
754+
}
753755

754-
SetTimer(hWnd, timerEventId, mouseJigglerInterval * 1000, NULL);
756+
SetTimer(hWnd, timerEventId, mouseJigglerInterval * 1000, NULL);
757+
}
755758

756759
if (pExtendedSettings->GetExtraSystemMenuEnabled())
757760
{

0 commit comments

Comments
 (0)