diff options
author | jaseg <git@jaseg.net> | 2018-06-28 22:55:05 +0200 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2018-06-28 22:55:05 +0200 |
commit | 0c0fbc10e94fc4f5787fb82e491a1901005f2087 (patch) | |
tree | 21ce4e6df27692bc0152270f06f62d91f49093f4 /gerbimg.py | |
parent | f4588ebda583bfa45e3ceb3dc5680b07fe9402d5 (diff) | |
download | gerbolyze-0c0fbc10e94fc4f5787fb82e491a1901005f2087.tar.gz gerbolyze-0c0fbc10e94fc4f5787fb82e491a1901005f2087.tar.bz2 gerbolyze-0c0fbc10e94fc4f5787fb82e491a1901005f2087.zip |
Fix offset issue for xen
Diffstat (limited to 'gerbimg.py')
-rwxr-xr-x | gerbimg.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ def paste_image( status_print('Calculating contour lines') plot_contours(out_img, target, - offx=(0, 0), + offx=(tminx, tminy), scale=scale, status_print=lambda *args: status_print(' ', *args)) |