use Size instead of Scale animation

BUG: 310945
FIXED-IN: 4.10
REVIEW: 108650
icc-effect-5.14.5
Thomas Lübking 2013-01-28 22:19:40 +01:00
parent 22f5769e74
commit e128d5ad26
1 changed files with 5 additions and 5 deletions

View File

@ -35,14 +35,14 @@ var maximizeEffect = {
window: window, window: window,
duration: maximizeEffect.duration, duration: maximizeEffect.duration,
animations: [{ animations: [{
type: Effect.Scale, type: Effect.Size,
to: { to: {
value1: 1.0, value1: newGeometry.width,
value2: 1.0 value2: newGeometry.height
}, },
from: { from: {
value1: oldGeometry.width / newGeometry.width, value1: oldGeometry.width,
value2: oldGeometry.height / newGeometry.height value2: oldGeometry.height
} }
}, { }, {
type: Effect.Translation, type: Effect.Translation,