limit thumb scrolling to the horizontal axis, since it doesn't overflow vertically

SVN revision: 52202
This commit is contained in:
Viktor Kojouharov 2010-09-13 22:27:00 +00:00
parent cdb8b51c3f
commit cbdc82096b
1 changed files with 1 additions and 0 deletions

View File

@ -102,6 +102,7 @@ ephoto_create_thumb_browser(Evas_Object *parent, const char *directory)
tb->thumb_browser = elm_gengrid_add(tb->layout);
elm_gengrid_align_set(tb->thumb_browser, 0.5, 0.5);
elm_gengrid_bounce_set(tb->thumb_browser, EINA_TRUE, EINA_FALSE);
elm_gengrid_item_size_set(tb->thumb_browser, em->config->thumb_size, em->config->thumb_size / THUMB_RATIO);
elm_gengrid_horizontal_set(tb->thumb_browser, EINA_TRUE);
evas_object_size_hint_align_set(tb->thumb_browser, EVAS_HINT_FILL, EVAS_HINT_FILL);