change theme animation for window frame icon urgency to be more in line with other e animations

a number of e animations are "zoom" related. bouncing is clearly identified as being OSX, so let's stay away from that.
This commit is contained in:
Mike Blumenkrantz 2013-12-31 22:33:04 -05:00
parent 87950c5d6c
commit e306137456
1 changed files with 6 additions and 6 deletions

View File

@ -137,13 +137,13 @@ group { name: "e/widgets/border/default/border";
}
description { state: "bounce1" 0.0;
inherit: "default" 0.0;
rel1.relative: 0.0 0.15;
rel2.relative: 1.0 1.15;
rel1.relative: 0.5 0.5;
rel2.relative: 0.5 0.5;
}
description { state: "bounce2" 0.0;
inherit: "default" 0.0;
rel1.relative: 0.0 -0.15;
rel2.relative: 1.0 0.85;
rel1.relative: -0.5 -0.5;
rel2.relative: 1.2 1.2;
}
}
part { name: "e.swallow.icon"; type: SWALLOW; mouse_events: 0;
@ -573,13 +573,13 @@ group { name: "e/widgets/border/default/border";
}
program { name: "urg1";
action: STATE_SET "bounce2" 0.0;
transition: DECELERATE 0.2;
transition: DECELERATE 0.4;
target: "icon";
after: "urg2";
}
program { name: "urg2";
action: STATE_SET "bounce1" 0.0;
transition: ACCELERATE 0.2;
transition: ACCELERATE 0.3;
target: "icon";
after: "urg1";
}