flipselector: Remove has some nbsp's and random whitespaces

Flipselector has some random whitespaces that do not belong.
Additionally there are a few hidden non-blocking spaces that prevent
edje_cc to compile the default.edc on arm. Appearantly on x86/amd64 this
works normally.

This patch works around T2285  while the issue should remain open as the
real issue, edje_cc treating nbsp as a whitespace on arm, is not fixed
through this patch.

ref T2285

Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
This commit is contained in:
Olliver Schinagl 2015-04-13 12:19:18 +02:00 committed by Stefan Schmidt
parent bce0487d55
commit 2c1022b894
1 changed files with 4 additions and 4 deletions

View File

@ -10,14 +10,14 @@ group { name: "elm/flipselector/base/default";
images.image: "shine.png" COMP;
images.image: "win_shadow.png" COMP;
images.image: "bevel_out.png" COMP;
data.item: "max_len" FLIP_PICKER_MAX_LEN_STR;
//FIXME: quick successive clicks on, say, up, lead to nastiness
script {
public cur, prev, next, lock;
  flip_up(str[]) {
flip_up(str[]) {
new tmp[FLIP_PICKER_MAX_LEN];
if (get_int(lock) == 1) {
replace_str(next, 0, str);
@ -48,7 +48,7 @@ group { name: "elm/flipselector/base/default";
set_state(PART:"bottom_shadow", "default", 0.0);
anim(0.2, "animator_top_down", 1);
}
  flip_dn(str[]) {
flip_dn(str[]) {
new tmp[FLIP_PICKER_MAX_LEN];
if (get_int(lock) == 1) {
replace_str(next, 0, str);