Skip to content

Commit

Permalink
[FindMyMouse]Fix hang on top left activation (#19347)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimecbernardo authored Jul 12, 2022
1 parent ad28c41 commit d37bab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/MouseUtils/FindMyMouse/FindMyMouse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct SuperSonar
return p1.x == p2.x && p1.y == p2.y;
}

static constexpr POINT ptNowhere = { -1, -1 };
static constexpr POINT ptNowhere = { LONG_MIN, LONG_MIN };
static constexpr DWORD TIMER_ID_TRACK = 100;
static constexpr DWORD IdlePeriod = 1000;

Expand Down

0 comments on commit d37bab3

Please sign in to comment.