Fixed #1904 NullpointerException when fast switching items

This commit is contained in:
Jindra Petřík
2022-12-20 09:41:05 +01:00
parent 676bd9f74b
commit f0b1020b2f
2 changed files with 6 additions and 1 deletions

View File

@@ -473,7 +473,11 @@ public final class ImagePanel extends JPanel implements MediaDisplay {
tim.schedule(new TimerTask() {
@Override
public void run() {
RECT rect = timelined.getRect();
Timelined tim = timelined;
if (tim == null) {
return;
}
RECT rect = tim.getRect();
double zoomDouble = zoom.fit ? getZoomToFit() : zoom.value;
double w = rect.getWidth() / SWF.unitDivisor * zoomDouble;
double h = rect.getHeight() / SWF.unitDivisor * zoomDouble;