Merge pull request #517 from fedxa/dpi-fix

Fix for dpi in pyplot backend
This commit is contained in:
Tom Breloff 2016-10-06 09:01:05 -04:00 committed by GitHub
commit 54670d4259

View File

@ -356,7 +356,7 @@ function py_bbox_title(ax)
end
function py_dpi_scale(plt::Plot{PyPlotBackend}, ptsz)
ptsz * DPI / plt[:dpi]
ptsz * plt[:dpi] / DPI
end
# ---------------------------------------------------------------------------