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

Commit

Permalink
Fixed mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Guad committed Sep 4, 2015
1 parent 96e514b commit 3c09e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UIMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ public bool ReleaseMenuFromItem(UIMenuItem releaseFrom)
/// </summary>
public void ProcessMouse()
{
if (!Visible || _justOpened || MenuItems.Count == 0 || IsUsingController || MouseControlsEnabled)
if (!Visible || _justOpened || MenuItems.Count == 0 || IsUsingController || !MouseControlsEnabled)
{
Function.Call(Hash.ENABLE_CONTROL_ACTION, (int)Control.LookUpDown);
Function.Call(Hash.ENABLE_CONTROL_ACTION, (int)Control.LookLeftRight);
Expand Down

0 comments on commit 3c09e35

Please sign in to comment.