diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-05-12 15:50:52 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-05-13 08:19:02 +0900 |
commit | b77016ad0282cc7061f9308287b63aba5a7c2545 (patch) | |
tree | 7d43ed3d0de7047f1bbf9c3191beb6a00a66eb16 | |
parent | c313a46b5e065ef3174af75314308647744bfe15 (diff) | |
download | efl-b77016ad0282cc7061f9308287b63aba5a7c2545.tar.gz |
fix cedric's image property code... that broke load opt downscaling...
CEDRIC... it WAS YOU!... YOU BROKE ETHUMB!... i was.. RIGHT! :) well
done. your borking skills are pretty good. :) you broke load opt
downscaling for jpegs in general.. it just happened to turn up in
ethumb.
-rw-r--r-- | src/lib/evas/common/evas_image_load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/common/evas_image_load.c b/src/lib/evas/common/evas_image_load.c index cb03c7ab76..006a7248a6 100644 --- a/src/lib/evas/common/evas_image_load.c +++ b/src/lib/evas/common/evas_image_load.c @@ -395,7 +395,7 @@ evas_common_load_rgba_image_data_from_file(Image_Entry *ie) memset(&property, 0, sizeof (Evas_Image_Property)); property.w = ie->w; property.h = ie->h; - property.scale = property.scale; + property.scale = ie->scale; property.rotated = ie->flags.rotated; property.premul = EINA_FALSE; property.alpha_sparse = EINA_FALSE; |