Pliant talk forum
Bug report: photo application
Small bug on photo size |
Message posted by pom on 2003/05/11 09:49:42 |
In /pliant/appli/photo/load.pli, line 70:
When the photo size has not to be changed, it appears that the size is actually bad (much smaller that what it should be). Changing the 'if x0<>photo:x0 or y0<>photo:y0 or x1<>photo:x1 or y1<>photo:y1 or size_x<>photo:size_x or size_y<>photo:size_y' into 'if true' then makes it work properly. It is probably due to some "real" bug elsewhere... |
Message posted by hubert.tonneau on 2003/05/11 09:55:36 |
Change it with:
if x0<>photo:x0 or y0<>photo:y0 or x1<>photo:x1 or y1<>photo:y1 or size_x*aa_x<>photo:size_x or size_y*aa_y<>photo:size_y
|