Fixed Filters display - ymin value

This commit is contained in:
Jindra Petřík
2023-10-14 12:43:19 +02:00
parent d928c25658
commit 230b5891cd
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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;