source: Roms_tools/mexcdf/netcdf_toolbox/netcdf/ncutility/idle.m @ 1

Last change on this file since 1 was 1, checked in by cholod, 13 years ago

import Roms_Agrif

File size: 350 bytes
Line 
1function Idle(theFigure)
2
3% Idle -- Set the arrow-cursor.
4%  Idle(theFigure) sets the arrow-cursor in theFigure.
5%   The companion routine is "Busy".
6 
7% Copyright (C) 1996 Dr. Charles R. Denham, ZYDECO.
8% All Rights Reserved.
9
10if ~any(findobj('Type', 'figure')), return, end
11
12if nargin < 1, theFigure = gcf; end
13
14set(theFigure, 'Pointer', 'arrow');
Note: See TracBrowser for help on using the repository browser.