From: Abe Lau on
Hi,
I am trying to use ginput to pick some coordinates point on an image plotted over an axes. At the same time, I have defined some callback functions to the axes to detect scrollwheel and key press.

% scrollwheel
set(gcf,'WindowScrollWheelFcn',{@axes_main_WindowScrollWheelFcn, handles});

However, after using ginput on the axes, all callback functions stop firing. I don't notice any change on the axes properties. Is there any way to restore to the state in which the axes still receive button event?

Thx, abe