Add support for time stickers in image editor.

This commit is contained in:
Clark
2023-03-30 11:26:56 -04:00
committed by Alex Hart
parent 08ebca501b
commit 28f27915c5
29 changed files with 1254 additions and 23 deletions

View File

@@ -10,7 +10,7 @@ import java.lang.ref.WeakReference;
/**
* Maintains a weak reference to the an invalidate callback allowing future invalidation without memory leak risk.
*/
abstract class InvalidateableRenderer implements Renderer {
public abstract class InvalidateableRenderer implements Renderer {
private WeakReference<RendererContext.Invalidate> invalidate = new WeakReference<>(null);