Changeset 762
- Timestamp:
- Aug 13, 2006, 3:53:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/InfoWindowController.m
r761 r762 36 36 #define TAB_ACTIVITY_IDENT @"Activity" 37 37 #define TAB_PEERS_IDENT @"Peers" 38 #define TAB_FILES_IDENT @"Files" 38 39 #define TAB_OPTIONS_IDENT @"Options" 39 #define TAB_FILES_IDENT @"Files"40 40 41 41 //15 spacing at the bottom of each tab … … 43 43 #define TAB_ACTIVITY_HEIGHT 214.0 44 44 #define TAB_PEERS_HEIGHT 250.0 45 #define TAB_FILES_HEIGHT 250.0 45 46 #define TAB_OPTIONS_HEIGHT 116.0 46 #define TAB_FILES_HEIGHT 250.047 47 48 48 @interface InfoWindowController (Private) … … 387 387 else if ([identifier isEqualToString: TAB_PEERS_IDENT]) 388 388 height = TAB_PEERS_HEIGHT; 389 else if ([identifier isEqualToString: TAB_FILES_IDENT]) 390 height = TAB_FILES_HEIGHT; 389 391 else if ([identifier isEqualToString: TAB_OPTIONS_IDENT]) 390 392 height = TAB_OPTIONS_HEIGHT; 391 else if ([identifier isEqualToString: TAB_FILES_IDENT])392 height = TAB_FILES_HEIGHT;393 393 else 394 394 height = TAB_INFO_HEIGHT; … … 472 472 [tableView reloadData]; 473 473 } 474 } 475 476 - (BOOL) tableView: (NSTableView *) tableView shouldSelectRow:(int) row 477 { 478 return tableView != fPeerTable; 474 479 } 475 480
Note: See TracChangeset
for help on using the changeset viewer.