;+ ; Sets the plotter's Auto Update feedback field as appropriate for ; the current value of !g.frozen. This should be called after ever ; time that !g.frozen changes state. Users should use the Auto Update ; menu on the plotter or the freeze and unfreeze procedures to change ; !g.frozen rather than change it directly. In that case, it is not ; necessary to call this procedure directly. ; ; @private_file ; ; @version $Id: setplotterautoupdate.pro,v 1.3 2005/05/30 04:03:43 bgarwood Exp $ ;- pro setplotterautoupdate common gbtplot_common,mystate,xarray if gbtplot() then begin if !g.frozen then begin widget_control,mystate.autolabel,set_value='Auto Update: Off' endif else begin widget_control,mystate.autolabel,set_value='Auto Update: On ' endelse endif end