Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update MouseEventArgs.cs
The IsPressed field was never updated as the pressed parameter was never used.
  • Loading branch information
xThaWolfx authored and xThaWolfx committed Oct 13, 2014
1 parent 9a37b72 commit 077bf0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/OpenTK/Input/MouseEventArgs.cs
Expand Up @@ -252,6 +252,7 @@ public MouseButtonEventArgs(int x, int y, MouseButton button, bool pressed)
: base(x, y)
{
this.button = button;
this.IsPressed = pressed;
}

/// <summary>
Expand Down

0 comments on commit 077bf0d

Please sign in to comment.