Should be. Do you have a breakpoint in the paint event? It could be that the browser is requesting the image and not getting a response if the app is paused.
if i do drawrect in the paint event it works fine,
but using drawpicture the picture doesnt display.
when i debug at the drawpicture line, i can see my picture i the debugger and since the picture is a property of the container i think it must exist.
To draw an image on a webcanvas, the image has to be requested by the browser and put into its cache first. When the image is received, we trigger a refresh to have the canvas draw itself again with the image.
Remember, existing on the server is not the same as existing on the browser. If the browser hasn’t received the image, it can’t display it.
FWIW, I’m not aware of any bugs regarding this right now, but if you think you’ve found one, file a bug report. I’d be happy to look at your code.