To re-enable the ability to press the tab key in a WindowButtonDownFcn event after plotting in MATLAB, you can reset the 'Interruptible' property of the figure to 'on'. This will allow the figure to respond to key presses even during execution of other callbacks.
Here is an example of how you can do this:
main.m406 chars20 lines
By setting the 'Interruptible' property to 'on' after your plotting operations, the figure will be able to respond to the tab key press or any other callback events.
gistlibby LogSnag