Changeset 703
- Timestamp:
- Jul 29, 2006, 5:43:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r702 r703 48 48 #define TORRENT_TABLE_VIEW_DATA_TYPE @"TorrentTableViewDataType" 49 49 50 #define ROW_HEIGHT_REGULAR 65.050 #define ROW_HEIGHT_REGULAR 165.0 51 51 #define ROW_HEIGHT_SMALL 40.0 52 52 #define WINDOW_REGULAR_WIDTH 468.0 … … 77 77 fPrefsController = [[PrefsController alloc] initWithWindowNibName: @"PrefsWindow"]; 78 78 fBadger = [[Badger alloc] init]; 79 80 fAutoImportedNames = [[NSMutableArray alloc] init]; 79 81 80 82 [GrowlApplicationBridge setGrowlDelegate: self]; … … 342 344 343 345 //timer to check for auto import every 15 seconds, must do after everything else is set up 344 fAutoImportedNames = [[NSMutableArray alloc] init];345 346 346 fAutoImportTimer = [NSTimer scheduledTimerWithTimeInterval: 15.0 target: self 347 347 selector: @selector(checkAutoImportDirectory:) userInfo: nil repeats: YES]; … … 2131 2131 if (newHeight < minHeight) 2132 2132 newHeight = minHeight; 2133 2134 float maxHeight = [[fWindow screen] visibleFrame].size.height; 2135 if (newHeight > maxHeight) 2136 newHeight = maxHeight; 2133 2137 2134 2138 frame.origin.y -= (newHeight - frame.size.height);
Note: See TracChangeset
for help on using the changeset viewer.