From 230b5891cdeb83987997990fc20f3299e5c513ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 14 Oct 2023 12:43:19 +0200 Subject: [PATCH] Fixed Filters display - ymin value --- CHANGELOG.md | 1 + .../src/com/jpexs/decompiler/flash/timeline/Timeline.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df86887a0..941cac3ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ All notable changes to this project will be documented in this file. - Generic tag editor - Disallow add before/after or remove on parent field with indices - Calculating fillBits, lineBits on SHAPE structure (storing morphshapes, fonts) - Generic tag editor - COLORMATRIXFILTER has fixed number of float values +- Filters display - ymin value ## [19.0.0] - 2023-10-01 ### Added diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java index df08c54d2..c9bb3c58a 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java @@ -779,7 +779,7 @@ public class Timeline { } rect.xMin -= deltaXMax * unzoom * SWF.unitDivisor; rect.xMax += deltaXMax * unzoom * SWF.unitDivisor; - rect.yMin -= deltaXMax * unzoom * SWF.unitDivisor; + rect.yMin -= deltaYMax * unzoom * SWF.unitDivisor; rect.yMax += deltaYMax * unzoom * SWF.unitDivisor; viewRect2.xMin -= deltaXMax * SWF.unitDivisor; viewRect2.xMax += deltaXMax * SWF.unitDivisor;