Hi all,
So I have this function to zoom and pan the plot by clicking the right mouse button.
function zoom_pan
hCM = uicontextmenu;
hMenu = uimenu('Parent',hCM,'Label','Switch to zoom',...
'Callback','zoom(gcbf,''on'')');
hPan = pan(gcf);
hPan.UIContextMenu = hCM;
pan('on')
hCMZ = uicontextmenu;
hZMenu = uimenu('Parent',hCMZ,'Label','Switch to pan',...
'Callback','pan(gcbf,''on'')');
hZoom = zoom(gcf);
hZoom.UIContextMenu = hCMZ;
zoom('on')
end
The function allows me to switch between zoom and pan.
Yesterday, this function worked. But suddenly today is not working.
In this order, the default function is zoom-in. However, I cannot switch to pan function.
If I reverse the order, I can switch from pan to zoom, but I cannot go back to pan. This function was amazing for this purpose. Pan and zoom really fast and always available but clicking the right mouse button.
Do you know if the is some update regarding this uicontextmenu with R2020a?