- Timestamp:
- Feb 24, 2014, 10:50:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r714 r715 521 521 %------------------------------------------------------------------------ 522 522 InputTable=get(handles.InputTable,'Data'); 523 set(handles.series,'Pointer','watch') % set the mouse pointer to 'watch' 523 524 set(handles.REFRESH,'BackgroundColor',[1 1 0])% set REFRESH button to yellow color (indicate activation) 524 525 drawnow … … 552 553 end 553 554 set(handles.REFRESH,'BackgroundColor',[1 0 0])% set REFRESH button to red color (indicate activation finished) 555 set(handles.series,'Pointer','arrow') % set the mouse pointer to 'watch' 554 556 555 557 %------------------------------------------------------------------------ … … 673 675 last_j=[]; 674 676 if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end 675 [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,Param.IndexRange.PairString); 677 PairString=''; 678 if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end 679 [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString); 676 680 FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},... 677 681 Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2); … … 680 684 set(handles.num_first_j,'String',num2str(ref_j)) 681 685 end 682 [i1,i2,j1,j2] = get_file_index(Param.IndexRange.last_i,last_j,Pa ram.IndexRange.PairString);686 [i1,i2,j1,j2] = get_file_index(Param.IndexRange.last_i,last_j,PairString); 683 687 LastFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},... 684 688 Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2); … … 2909 2913 end 2910 2914 if strcmp(ActionExt,'.sh') 2915 set(handles.series,'Pointer','watch') % set the mouse pointer to 'watch' 2911 2916 set(handles.ActionExt,'BackgroundColor',[1 1 0]) 2912 2917 ActionFullName=fullfile(get(handles.ActionPath,'String'),[ActionName '.sh']); … … 2944 2949 end 2945 2950 set(handles.ActionExt,'BackgroundColor',[1 1 1]) 2951 set(handles.series,'Pointer','arrow') % set the mouse pointer to 'watch 2946 2952 end 2947 2953
Note: See TracChangeset
for help on using the changeset viewer.