Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed minor issue, default scaling did not use scaling factor
  • Loading branch information
VincentVandalon committed Mar 1, 2016
commit bfc7389051e9b508d41c3ef33986d11dc9e83725
3 changes: 1 addition & 2 deletions lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,7 @@ def set_locs(self, locs):
if len(self.locs) > 0:
vmin, vmax = self.axis.get_view_interval()
d = abs(vmax - vmin)
if self._offsetScaleNone == 0:
self._set_offset(d)
self._set_offset(d)

self._set_orderOfMagnitude(d)
self._set_format(vmin, vmax)
Expand Down