MATLAB: Cursor basics- Matlab 7.8.0 R2009a

cursorMATLAB

Can someone please advise me how to make a global choice of cursor when working with GUIs? Currently the default one is a cross, and I know there is a way to change it into an arrow, but cannot recall which file needed to be changed.

Best Answer

Update ginput.m line 102 (originally set(fig,'pointer','fullcrosshair'))_ with _set(fig,'pointer','arrow');_this will change the default cursor when working with graphical input.
Related Question