Skip to content
Snippets Groups Projects
Commit ab2aec14 authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

%% Check Matlab version for use of KeyPressFcn and KeyReleaseFcn properties

% -------------------------------------------------------------------------
switch ( version('-release') )
  case { '11', '12', '13', '14', '2006a', '2006b' }
    % dont process KeyPressFcn and KeyReleaseFcn events
  otherwise
    
   % show crossline when shitf key is pressed, vertical bar when ctrl key
   % --------------------------------------------------------------------
   set( hMainFig, 'KeyPressFcn',   @keyPressFcnCallback,...
                  'KeyReleaseFcn', @keyReleaseFcnCallback);
end  
parent 651c21c6
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment