Skip to content

Commit

Permalink
Merge pull request #2065 from davidkline-ms/btnFixDev
Browse files Browse the repository at this point in the history
fix #1887, dev branch
  • Loading branch information
David Kline authored May 9, 2018
2 parents 77f1404 + 19964a8 commit cd0c362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/MixedRealityToolkit/UX/Scripts/Buttons/Button.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void OnSourceLost(SourceStateEventData eventData)
if (sourceInfo == InteractionSourceInfo.Hand)
{
_handCount--;
_bHandVisible = _handCount <= 0;
_bHandVisible = _handCount > 0;
}
}
}
Expand Down

0 comments on commit cd0c362

Please sign in to comment.