Allow querying ready state of custom emoji.

This commit is contained in:
John Preston 2022-08-23 20:35:25 +03:00
parent 01c4ba869a
commit fc2c553670

View file

@ -185,6 +185,7 @@ public:
using Context = CustomEmojiPaintContext;
virtual void paint(QPainter &p, const Context &context) = 0;
virtual void unload() = 0;
[[nodiscard]] virtual bool ready() = 0;
};