Changeset 4055

Show
Ignore:
Timestamp:
04/07/06 23:34:10 (3 years ago)
Author:
morris
Message:

Toggle zoom button when clicking image to zoom

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Footagehead/trunk/English.lproj/ReleaseNotes.rtf

    r3944 r4055  
    428428\f1\b0 \cf0 \ 
    429429- Add option to select between inline or linked images, or both, on HTML pages\ 
     430- Toggle zoom button when clicking image to zoom\ 
    430431 
    431432\f0\b \cf2 \ 
  • Footagehead/trunk/FHController.m

    r3944 r4055  
    351351                         
    352352                        url = [file URL]; 
     353                         
     354                        if(![url isFileURL]) 
     355                                goto next; 
     356                         
    353357                        image = [[FHCache cache] thumbnailForURL:url]; 
    354358                         
     
    14151419        FHImageScaling          scaling; 
    14161420         
     1421        if(sender != _zoomButton) { 
     1422                [_zoomButton performClick:self]; 
     1423                 
     1424                return; 
     1425        } 
     1426                 
    14171427        if(_fullscreenWindow) { 
    14181428                scaling = [_fullscreenImageView imageScaling];