Changeset 5184

Show
Ignore:
Timestamp:
01/18/08 18:28:13 (6 months ago)
Author:
morris
Message:

Listen to size changes as well

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Spiral/trunk/SPInspectorController.m

    r5099 r5184  
    262262        [[NSNotificationCenter defaultCenter] 
    263263                addObserver:self 
    264                    selector:@selector(movieControllerAttributesChanged:) 
     264                   selector:@selector(movieControllerSizeOrAttributesChanged:) 
     265                           name:SPMovieControllerSizeChangedNotification]; 
     266         
     267        [[NSNotificationCenter defaultCenter] 
     268                addObserver:self 
     269                   selector:@selector(movieControllerSizeOrAttributesChanged:) 
    265270                           name:SPMovieControllerAttributesChangedNotification]; 
    266271         
     
    327332 
    328333 
    329 - (void)movieControllerAttributesChanged:(NSNotification *)notification { 
     334- (void)movieControllerSizeOrAttributesChanged:(NSNotification *)notification { 
    330335        NSWindow                *window; 
    331336