Changeset 627 for trunk/src/mouse_motion.m
- Timestamp:
- May 3, 2013, 10:11:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mouse_motion.m
r625 r627 39 39 hPlotAxes=hhCurrentFig.PlotAxes';% handles of the main plot axes 40 40 AxeData=get(hPlotAxes,'UserData');% data attached to the axis 41 htext_display(1)=handles.text_display; 42 if isfield(AxeData,'htext_display')&&ishandle(AxeData.htext_display) 43 htext_display(2)=AxeData.htext_display; 44 end 41 45 test_draw=0;%test for mouse drawing of object, =0 by default 42 46 if isfield(AxeData,'Drawing')&& ~isempty(AxeData.Drawing) … … 288 292 text_displ(ind_blank)=[]; 289 293 end 290 set(handles.text_display,'String',text_displ) 294 %set(handles.text_display,'String',text_displ) 295 set(htext_display,'String',text_displ) 291 296 else 292 set(handles.text_display,'String',get(handles.text_display,'UserData')) 297 %set(handles.text_display,'String',get(handles.text_display,'UserData')) 298 set(htext_display,'String',get(handles.text_display,'UserData')) 293 299 end 294 300
Note: See TracChangeset
for help on using the changeset viewer.