Skip to content

Commit

Permalink
Fix magnification gesture on OSX (Fixes #850)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Mar 17, 2016
1 parent f336ba7 commit b0a40c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Charts/Classes/Utils/ChartPlatform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -350,11 +350,11 @@ types are aliased to either their UI* implementation (on iOS) or their NS* imple
{
get
{
return magnification
return magnification + 1.0
}
set
{
magnification = newValue
magnification = newValue - 1.0
}
}

Expand Down

0 comments on commit b0a40c3

Please sign in to comment.