Changeset 5051
- Timestamp:
- 11/11/07 00:19:40 (10 months ago)
- Files:
-
- Footagehead/trunk/FHBrowserController.m (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/FHBrowserController.m
r5021 r5051 845 845 846 846 - (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)offset { 847 return 49.0;847 return 32.0 + 17.0; 848 848 } 849 849 … … 851 851 852 852 - (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)offset { 853 return 1 45.0;853 return 128.0 + 17.0; 854 854 } 855 855 … … 863 863 864 864 if(position >= 128.0) 865 return 145.0;865 position = 128.0; 866 866 else if(position >= 64.0) 867 return 81.0;867 position = 64.0; 868 868 else if(position >= 48.0) 869 return 65.0; 870 871 return 49.0; 869 position = 48.0; 870 else 871 position = 32.0; 872 873 return position + 17.0; 872 874 } 873 875 … … 1404 1406 [self _resizeTableView]; 1405 1407 1406 [_tableView displayIfNeeded];1408 [_tableView setNeedsDisplay:YES]; 1407 1409 1408 1410 _tableViewSize = size;
