editor: fixed slide repaint on on-time seek

This commit is contained in:
Alex Andres 2024-06-21 10:37:26 +02:00
parent e4d2ad05ac
commit 1bf66358b0
No known key found for this signature in database
GPG key ID: 340764C7851D7041

View file

@ -298,17 +298,13 @@ public class SlideView extends Control implements ParameterChangeListener, org.l
}
public synchronized void repaint() {
if (seekProperty.get()) {
return;
}
SlideViewSkin skin = (SlideViewSkin) getSkin();
skin.repaint();
}
/**
* @return The CssMetaData associated with this class, which may include the
* CssMetaData of its super classes.
* CssMetaData of its superclasses.
*/
public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {
return StyleableProperties.STYLEABLES;