Skip to content

Commit

Permalink
Merge pull request RolandPheasant#158 from MrCull/MouseScrollIssueLef…
Browse files Browse the repository at this point in the history
…tRight

Fixed issue  RolandPheasant#157 "Horizontal scroll bar misbehaving when clicking in track"
  • Loading branch information
RolandPheasant authored Sep 5, 2016
2 parents 00cc88f + 2fd345d commit 3fdf1ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -576,12 +576,12 @@ public void PageDown()

public void PageLeft()
{
SetHorizontalOffset(HorizontalOffset + ItemWidth);
SetHorizontalOffset(HorizontalOffset - ItemWidth);
}

public void PageRight()
{
SetHorizontalOffset(HorizontalOffset - ItemWidth);
SetHorizontalOffset(HorizontalOffset + ItemWidth);
}

public void MouseWheelUp()
Expand Down

0 comments on commit 3fdf1ab

Please sign in to comment.