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

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