Changeset 905 for trunk/src/mouse_up.m
- Timestamp:
- May 30, 2015, 8:44:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mouse_up.m
r871 r905 141 141 if ~isempty(ObjectData) 142 142 % plot the field projected on the object 143 ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData144 if ~isempty(ProjData)143 [ProjData,errormsg]= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData 144 if isempty(errormsg) && ~isempty(ProjData) 145 145 if strcmp(FigTag,'uvmat')% uvmat plot selected, projection plot seen in view_field 146 146 hview_field=findobj(allchild(0),'tag','view_field'); … … 170 170 end 171 171 end 172 if ~isempty(errormsg) 173 msgbox_uvmat('ERROR',errormsg) 174 return 175 end 172 176 set(hhuvmat.CheckViewField,'Value',1);% 173 177 set(hhuvmat.CheckEditObject,'Value',1);%
Note: See TracChangeset
for help on using the changeset viewer.