genlist.edc: fixed decorate all mode bug when scrolling.

When we scroll the genlist with decorate all mode, newerly realized items looked like a normal mode.
This was caused by a new theme. Genlist item style should handle all the necessary parts when decorate mode is enabled/diabled.
This fixes T576.
This commit is contained in:
Daniel Juyung Seo 2013-11-28 17:23:47 +09:00
parent 2921e851e1
commit b947a522e1
1 changed files with 4 additions and 0 deletions

View File

@ -5658,11 +5658,15 @@ group { name: "elm/genlist/item/edit/default";
signal: "elm,state,decorate,enabled"; source: "elm";
action: STATE_SET "on" 0.0;
target: "elm.swallow.decorate.content";
target: "elm.edit.icon.1";
target: "elm.edit.icon.2";
}
program {
signal: "elm,state,decorate,disabled"; source: "elm";
action: STATE_SET "default" 0.0;
target: "elm.swallow.decorate.content";
target: "elm.edit.icon.1";
target: "elm.edit.icon.2";
}
}
}