Ok, some stuff I missed when updating.

This commit is contained in:
Jaime Thomas
2009-01-27 04:00:34 +00:00
parent 3273177453
commit bfedcfcd28
7 changed files with 293 additions and 97 deletions

View File

@@ -138,7 +138,8 @@ ecdb_button_icon_set(Evas_Object *b, const char *group)
printf("ecdb_button_icon_set: NULL icon!\n");
return;
}
edje_object_file_set(icon, em->theme_path, group);
if (edje_object_file_set(icon, em->theme_path, group))
edje_object_signal_emit(b, "ecdb,button,icon,swallow", "ecdb");
evas_object_show(icon);
}
@@ -889,8 +890,7 @@ ecdb_combo_expand(Evas_Object *c)
min_size = edje_object_data_get(o, "ecdb/combo_item/minh");
if (min_size)
{
// FIXME Change this to config val
h2 += (int)(atof(min_size) * edje_scale_get());
h2 += (int)((float)atoi(min_size) * em->scalef);
}
else
{