diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-09-18 14:56:41 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-09-18 14:56:41 -0400 |
commit | 4633f3a8e9660201525ee822818981de7c0c7c5a (patch) | |
tree | 17a11bfd993bbe7c1d948e2611762f8d4d83be3a /gui_win.m | |
parent | 01fb2632d02c7bc03cb852cd2c632806a9f02c2e (diff) | |
download | beam_profiler-4633f3a8e9660201525ee822818981de7c0c7c5a.tar.gz beam_profiler-4633f3a8e9660201525ee822818981de7c0c7c5a.zip |
spelling typo fix
Diffstat (limited to 'gui_win.m')
-rw-r--r-- | gui_win.m | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -22,7 +22,7 @@ function varargout = gui_win(varargin) % Edit the above text to modify the response to help gui_win -% Last Modified by GUIDE v2.5 18-Sep-2012 14:31:11 +% Last Modified by GUIDE v2.5 18-Sep-2012 14:56:06 % Begin initialization code - DO NOT EDIT gui_Singleton = 1; @@ -230,7 +230,7 @@ if get(handles.button2singlerun,'Value') end; % This executes when we do the continuous run -if get(handles.button2comtinuousrun,'Value') +if get(handles.button2continuous_run,'Value') while get(handles.button2start,'Value') > 0 grab_image_and_update_display(handles); end; @@ -820,14 +820,14 @@ function button2fit_ButtonDownFcn(hObject, eventdata, handles) % handles structure with handles and user data (see GUIDATA) -% --- Executes on key press with focus on button2comtinuousrun and none of its controls. -function button2comtinuousrun_KeyPressFcn(hObject, eventdata, handles) -% hObject handle to button2comtinuousrun (see GCBO) +% vim: tabstop=4 shiftwidth=4 expandtab + + +% --- Executes on key press with focus on button2continuous_run and none of its controls. +function button2continuous_run_KeyPressFcn(hObject, eventdata, handles) +% hObject handle to button2continuous_run (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) - - -% vim: tabstop=4 shiftwidth=4 expandtab |