theme: fix odd state setting on some items for list/genlist/gengrid

Summary:
these used a bad state value which did not exist for the corresponding part

@fix

Reviewers: cedric

Reviewed By: cedric

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7605
This commit is contained in:
Mike Blumenkrantz 2019-01-17 15:11:07 -05:00
parent 270cb385ca
commit 5adeda5133
3 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ group { name: "elm/gengrid/item/default/default";
} \
program { \
signal: "elm,state,odd"; source: "elm"; \
action: STATE_SET "odd" 1.0; \
action: STATE_SET "odd" 0.0; \
target: "base"; \
} \
program { \

View File

@ -5066,7 +5066,7 @@ group { "elm/genlist/item/edit/default"; nomouse;
}
program {
signal: "elm,state,odd";
action: STATE_SET "odd" 1.0;
action: STATE_SET "odd" 0.0;
target: "base";
}
program {

View File

@ -143,7 +143,7 @@ group { name: "elm/list/item/default";
}
program {
signal: "elm,state,odd"; source: "elm";
action: STATE_SET "odd" 1.0;
action: STATE_SET "odd" 0.0;
target: "base";
}
program {
@ -454,7 +454,7 @@ group { name: "elm/list/h_item/default";
}
program {
signal: "elm,state,odd"; source: "elm";
action: STATE_SET "odd" 1.0;
action: STATE_SET "odd" 0.0;
target: "base";
}
program {