Changeset 4894
- Timestamp:
- 09/05/07 13:49:50 (1 year ago)
- Files:
-
- Footagehead/trunk/FHBrowserController.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/FHBrowserController.m
r4892 r4894 257 257 - (void)_loadURL:(WIURL *)url selectRow:(NSInteger)row name:(NSString *)name { 258 258 NSArray *files; 259 NSString *subtitle;260 259 FHHandler *handler; 261 260 FHFile *file; … … 285 284 [[WIEventQueue sharedQueue] addPath:[[_handler URL] path] forMode:WIEventFileWrite]; 286 285 287 subtitle = [[_handler stringComponents] lastObject]; 288 289 if(!subtitle && [[_handler URL] isFileURL]) 290 subtitle = [[NSHost currentHost] name]; 291 292 [[self window] setTitle:[NSApp name] withSubtitle:subtitle]; 286 [[self window] setTitle:[NSApp name] withSubtitle:[[_handler stringComponents] lastObject]]; 293 287 294 288 [self updateSpreads]; … … 625 619 626 620 - (void)windowControllerChangedZoomMode:(NSNotification *)notification { 627 if([notification object] != _imageView) {621 if([notification object] == _imageView) { 628 622 [_imageView setImageScaling:[FHSettings intForKey:FHImageScalingMethod]]; 629 623
