lock R to resize the window

4

In% w / o, you can grab and hold a device, draw an image, and flush the graphic render. This is useful for complex screen situations with hundreds of dots and / or color gradients, since without holding it the device would be updated with every operation that modifies the screen, and that locking on the device works normally.

However, however, any window resizing operation will cause an update of the device, but without crashing and flushing.

Is there any way to tell R to lock the screen (hold) for resize operations?

    
asked by anonymous 27.06.2018 / 15:39

1 answer

6

To prevent redraw during resizing, you can use dev.control ("inhibit"), although while you are in inhibit status you will not be able to redraw or flush.

    
27.06.2018 / 15:48