fix rulers in mm display

This commit is contained in:
John Cupitt 2010-11-28 16:42:17 +00:00
parent 404778cc3c
commit 82d04fb4ec
2 changed files with 6 additions and 5 deletions

7
TODO
View File

@ -1,9 +1,8 @@
- sinkscreen sync mode is single-threaded :( can we safely unlock around the - fits >3d load
prepare?
fits save
see Haida's mail re. cfitsio and higher dimensions
- see Haida's mail re. cfitsio and higher dimensions

View File

@ -41,6 +41,8 @@
* - cleanups * - cleanups
* - removed im_copy_from() and associated stuff * - removed im_copy_from() and associated stuff
* - added im_copy_native() * - added im_copy_native()
* 28/11/10
* - im_copy_set() now sets xoff / yoff again hmmm
*/ */
/* /*
@ -200,7 +202,7 @@ im_copy_set( IMAGE *in, IMAGE *out,
VipsType type, float xres, float yres, int xoffset, int yoffset ) VipsType type, float xres, float yres, int xoffset, int yoffset )
{ {
return( im_copy_set_all( in, out, return( im_copy_set_all( in, out,
type, xres, yres, 0, 0, type, xres, yres, xoffset, yoffset,
in->Bands, in->BandFmt, in->Coding ) ); in->Bands, in->BandFmt, in->Coding ) );
} }