Changeset 669
- Timestamp:
- Jul 17, 2013, 8:00:32 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/get_field.m
r654 r669 86 86 end 87 87 %Field.NbDim(ilist)=numel(Field.VarDimNameNonSingleton{ilist});%nbre of array dimensions after elimination of singletons 88 end 89 if ~isfield(Field,'VarAttribute') 90 Field.VarAttribute={}; 88 91 end 89 92 if numel(Field.VarAttribute)<NbVar% complement VarAttribute by blanjs if neded -
trunk/src/mouse_down.m
r660 r669 60 60 test_ruler=isequal(get(hhuvmat.MenuRuler,'checked'),'on');%test for ruler action, second priority; 61 61 test_edit=get(hhuvmat.CheckEditObject,'Value')&& (isequal(obj_tag,'proj_object')||isequal(obj_tag,'DeformPoint'));%test for object editing, third priority 62 hset_object=findobj(allchild(0),' tag','set_object');62 hset_object=findobj(allchild(0),'Name','set_object'); 63 63 if ~isempty(hset_object) 64 64 hPLOT=findobj(hset_object,'tag','PLOT'); … … 182 182 183 183 %% Creation of a display window zoom of text_display 184 if isequal(get(hObject,'SelectionType'),'alt') && strcmp(htype,'axes') && ~test_edit && ~test_create184 if strcmp(get(hObject,'SelectionType'),'alt') && strcmp(htype,'axes') && ~test_edit && ~test_create 185 185 set(0,'Unit','pixels') 186 186 GUISize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right -
trunk/src/series.m
r667 r669 1138 1138 function PairString_CellSelectionCallback(hObject, eventdata, handles) 1139 1139 %------------------------------------------------------------------------ 1140 if numel(eventdata.Indices)>=1 1140 1141 set(handles.ListView,'Value',eventdata.Indices(1))% detect the selected raw index 1141 1142 ListView_Callback ([],[],handles) % update the list of available pairs 1143 end 1142 1144 1143 1145 %------------------------------------------------------------------------ -
trunk/src/uvmat.m
r667 r669 3328 3328 set(handles.uvmat,'UserData',UvData) 3329 3329 set(handles.TransformName,'value',2); % set transform fct to 'sub_field' if the current fct does not accept two input fields 3330 transform_fct_Callback(hObject, eventdata, handles)% activate transform_fct_Callback and refresh current plot3330 TransformName_Callback(hObject, eventdata, handles)% activate transform_fct_Callback and refresh current plot 3331 3331 else 3332 3332 check_refresh=1;
Note: See TracChangeset
for help on using the changeset viewer.