Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
[Bugfix] #546: Resolve right-click conflicts (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
cddjr authored Jul 1, 2023
1 parent 5e6c3e7 commit 212d4dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gui/radar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ namespace Radar {
};

State.rpcQueue.push(new RpcSnapTo(target));

/* Workaround for https://github.com/BitCrackers/AmongUsMenu/issues/546 */
ImGui::GetIO().MouseDown[ImGuiMouseButton_Right] = false;
ImGui::GetIO().MouseDownDuration[ImGuiMouseButton_Right] = -1.0f;
}
}

Expand Down

0 comments on commit 212d4dc

Please sign in to comment.