Make the starting thumb size smaller.

SVN revision: 57038
This commit is contained in:
titan 2011-02-14 20:30:42 +00:00 committed by titan
parent 93bc6dfe53
commit 05531c003c
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#define ZOOM_MAX 512
#define ZOOM_MED 256
#define ZOOM_MIN 128
#define ZOOM_START 192
#define ZOOM_STEP 32
static Evas_Object *_ephoto_thumbnail_icon_get(void *data, Evas_Object *obj __UNUSED__, const char *part __UNUSED__);
@ -45,7 +46,7 @@ Evas_Object *
ephoto_thumb_browser_add(void)
{
etb = calloc(1, sizeof(Ephoto_Thumb_Browser));
etb->thumb_size = ZOOM_MED;
etb->thumb_size = ZOOM_START;
etb->box = elm_box_add(ephoto->win);
elm_box_horizontal_set(etb->box, EINA_FALSE);