singleShotTimer can be called directly from bindings:
QTimer_singleShot(10, @OurCallback);
OurCallback is procedure of object; cdecl;
In Qt6 there's also context param so eg:
QTimer_singleShot(10, Clipboard, @OurCallback);
Idea with timer is possible solution since there's no mechanism in Qt which can fix this problem, even if I change someting in bindings.