'everything' module.. fixes...

SVN revision: 41831
This commit is contained in:
Hannes Janetzek 2009-08-17 03:51:03 +00:00
parent 06bacad65f
commit 6d0f8136bd
2 changed files with 3 additions and 2 deletions

View File

@ -86,7 +86,7 @@ e_modapi_init(E_Module *m)
#undef D
evry_conf = e_config_domain_load("module.everything", conf_edd);
if (!evry_conf || (evry_conf->version == CONFIG_VERSION))
if (!evry_conf || (evry_conf->version != CONFIG_VERSION))
{
evry_conf = E_NEW(Config, 1);
evry_conf->version = CONFIG_VERSION;
@ -97,7 +97,7 @@ e_modapi_init(E_Module *m)
evry_conf->scroll_animate = 0;
evry_conf->scroll_speed = 0.08;
evry_conf->hide_input = 0;
evry_conf->hide_input = 1;
evry_conf->hide_list = 1;
}
/* search for plugins */

View File

@ -31,6 +31,7 @@ _cb_preview_thumb_gen(void *data, Evas_Object *obj, void *event_info)
e_icon_size_get(o_thumb[1], &w, &h);
edje_extern_object_min_size_set(o_thumb[1], w, h);
edje_object_part_swallow(o_main, "e.swallow.icon2", o_thumb[1]);
evas_object_size_hint_aspect_set(o_thumb[1], EVAS_ASPECT_CONTROL_HORIZONTAL, w, h);
evas_object_show(o_thumb[1]);
}