mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-06 09:08:09 +00:00
Fixed Filters display - ymin value
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user