[elm] Fix missing icon on Genlist 'double_label' theme for consistency.

Patch by João Paulo Fernandes Ventura.



SVN revision: 76549
This commit is contained in:
Gustavo Lima Chaves 2012-09-12 17:01:34 +00:00
parent 2aec1cf9e6
commit 0ef2708002
2 changed files with 5 additions and 1 deletions

View File

@ -4607,6 +4607,7 @@ group { name: "elm/genlist/item/double_label/default";
description { state: "default" 0.0;
fixed: 1 0;
align: 0.0 0.5;
aspect: 1.0 1.0;
rel1 {
to_x: "elm.swallow.pad";
relative: 1.0 0.0;
@ -5485,6 +5486,7 @@ group { name: "elm/genlist/item_compress_odd/double_label/default";
description { state: "default" 0.0;
fixed: 1 0;
align: 0.0 0.5;
aspect: 1.0 1.0;
rel1 {
to_x: "elm.swallow.pad";
relative: 1.0 0.0;
@ -5822,6 +5824,7 @@ group { name: "elm/genlist/tree/double_label/default";
description { state: "default" 0.0;
fixed: 1 0;
align: 0.0 0.5;
aspect: 1.0 1.0;
rel1 {
to_x: "arrow";
relative: 1.0 0.0;
@ -6509,6 +6512,7 @@ group { name: "elm/genlist/tree_odd/double_label/default";
description { state: "default" 0.0;
fixed: 1 0;
align: 0.0 0.5;
aspect: 1.0 1.0;
rel1 {
to_x: "arrow";
relative: 1.0 0.0;
@ -7904,6 +7908,7 @@ group { name: "elm/genlist/tree_compress_odd/double_label/default";
description { state: "default" 0.0;
fixed: 1 0;
align: 0.0 0.5;
aspect: 1.0 1.0;
rel1 {
to_x: "arrow";
relative: 1.0 0.0;

View File

@ -35,7 +35,6 @@ _item_content_get(void *data, Evas_Object *obj, const char *part)
if (!strcmp(part, "elm.swallow.icon"))
elm_icon_standard_set(ic, "clock");
evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
return ic;
}