Bug: the main image is not updated when dragging in the plugin panel

,

If you want to make an extention that has a slider and continiosly updates the image, you will be a little bit surprised.
Photoshop would update the preview image in the Navigator panel (that small preview image, useful for zooming).
But it will not update the main image.

So, basically, user would see the result of the adjustment once he triggers mouse up event.
It could be some weird Photoshop optimization which does not allow canvas updates if an user is drawing - but it is pretty annoying for plugins.

So, ideally, it would be nice to disable this feature if mousedown occures on the plugin. So, keep the old behaviour for Photoshop, but if the user tries to use the slider in the plugin - allow preview for the image.

I could prepare a minimal example for testing with a slider, if you need. Or make a video describing the problem.

video with the bug: https://youtu.be/Y0AyM_sxnx8

As you can see, Navigator shows changes in the realtime.
While the main image only once (when mouse is finally up)

Also, if we block click propogation to Photoshop with ioHook, it will work.
But iohook is not allowed for UXP and is sketchy