From bcd3c03b16a0bd5086a5b0a3a7fb9f171ce58922 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 3 Sep 2006 09:44:00 +0000 Subject: [PATCH] e_icon loads at 64x64 internally... to try speed things up. SVN revision: 25397 --- src/bin/e_icon.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_icon.c b/src/bin/e_icon.c index 8b213dae9..6b95166b6 100644 --- a/src/bin/e_icon.c +++ b/src/bin/e_icon.c @@ -44,6 +44,7 @@ e_icon_file_set(Evas_Object *obj, const char *file) sd = evas_object_smart_data_get(obj); if (!sd) return; /* smart code here */ + evas_object_image_load_size_set(sd->obj, 64, 64); evas_object_image_file_set(sd->obj, file, NULL); _e_icon_smart_reconfigure(sd); } @@ -56,6 +57,7 @@ e_icon_file_key_set(Evas_Object *obj, const char *file, const char *key) sd = evas_object_smart_data_get(obj); if (!sd) return; /* smart code here */ + evas_object_image_load_size_set(sd->obj, 64, 64); evas_object_image_file_set(sd->obj, file, key); _e_icon_smart_reconfigure(sd); }