enjoy: There's no more elm_toggle.

Use elm_check instead.

NOTE: Not sure if this is the right way of setting a toggle style for
elm_check when using externals, but at least this silents the warnings.
Will check it later when I bring the rest to work again.

SVN revision: 84476
This commit is contained in:
Rafael Antognolli 2013-03-31 21:41:47 +00:00
parent 7baedb6574
commit 90cc2d2ea9
1 changed files with 4 additions and 2 deletions

View File

@ -503,7 +503,7 @@ collections {
part {
name: "buttons.repeat";
type: EXTERNAL;
source: "elm/toggle";
source: "elm/check";
description {
state: "default" 0.0;
align: 0.0 0.0;
@ -521,12 +521,13 @@ collections {
}
params.string: "label on" "Repeat ON";
params.string: "label off" "Repeat OFF";
params.string: "style" "toggle";
}
}
part {
name: "buttons.shuffle";
type: EXTERNAL;
source: "elm/toggle";
source: "elm/check";
description {
state: "default" 0.0;
align: 1.0 0.0;
@ -544,6 +545,7 @@ collections {
}
params.string: "label on" "Shuffle ON";
params.string: "label off" "Shuffle OFF";
params.string: "style" "toggle";
}
}