Don't allow row selection in peer table.
This commit is contained in:
parent
98f63e9133
commit
976dc9e4c3
|
@ -35,15 +35,15 @@
|
||||||
#define TAB_INFO_IDENT @"Info"
|
#define TAB_INFO_IDENT @"Info"
|
||||||
#define TAB_ACTIVITY_IDENT @"Activity"
|
#define TAB_ACTIVITY_IDENT @"Activity"
|
||||||
#define TAB_PEERS_IDENT @"Peers"
|
#define TAB_PEERS_IDENT @"Peers"
|
||||||
#define TAB_OPTIONS_IDENT @"Options"
|
|
||||||
#define TAB_FILES_IDENT @"Files"
|
#define TAB_FILES_IDENT @"Files"
|
||||||
|
#define TAB_OPTIONS_IDENT @"Options"
|
||||||
|
|
||||||
//15 spacing at the bottom of each tab
|
//15 spacing at the bottom of each tab
|
||||||
#define TAB_INFO_HEIGHT 182.0
|
#define TAB_INFO_HEIGHT 182.0
|
||||||
#define TAB_ACTIVITY_HEIGHT 214.0
|
#define TAB_ACTIVITY_HEIGHT 214.0
|
||||||
#define TAB_PEERS_HEIGHT 250.0
|
#define TAB_PEERS_HEIGHT 250.0
|
||||||
#define TAB_OPTIONS_HEIGHT 116.0
|
|
||||||
#define TAB_FILES_HEIGHT 250.0
|
#define TAB_FILES_HEIGHT 250.0
|
||||||
|
#define TAB_OPTIONS_HEIGHT 116.0
|
||||||
|
|
||||||
@interface InfoWindowController (Private)
|
@interface InfoWindowController (Private)
|
||||||
|
|
||||||
|
@ -386,10 +386,10 @@
|
||||||
height = TAB_ACTIVITY_HEIGHT;
|
height = TAB_ACTIVITY_HEIGHT;
|
||||||
else if ([identifier isEqualToString: TAB_PEERS_IDENT])
|
else if ([identifier isEqualToString: TAB_PEERS_IDENT])
|
||||||
height = TAB_PEERS_HEIGHT;
|
height = TAB_PEERS_HEIGHT;
|
||||||
else if ([identifier isEqualToString: TAB_OPTIONS_IDENT])
|
|
||||||
height = TAB_OPTIONS_HEIGHT;
|
|
||||||
else if ([identifier isEqualToString: TAB_FILES_IDENT])
|
else if ([identifier isEqualToString: TAB_FILES_IDENT])
|
||||||
height = TAB_FILES_HEIGHT;
|
height = TAB_FILES_HEIGHT;
|
||||||
|
else if ([identifier isEqualToString: TAB_OPTIONS_IDENT])
|
||||||
|
height = TAB_OPTIONS_HEIGHT;
|
||||||
else
|
else
|
||||||
height = TAB_INFO_HEIGHT;
|
height = TAB_INFO_HEIGHT;
|
||||||
|
|
||||||
|
@ -473,6 +473,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL) tableView: (NSTableView *) tableView shouldSelectRow:(int) row
|
||||||
|
{
|
||||||
|
return tableView != fPeerTable;
|
||||||
|
}
|
||||||
|
|
||||||
//only called on >= 10.4
|
//only called on >= 10.4
|
||||||
- (NSString *) tableView: (NSTableView *) tableView toolTipForCell: (NSCell *) cell
|
- (NSString *) tableView: (NSTableView *) tableView toolTipForCell: (NSCell *) cell
|
||||||
rect: (NSRectPointer) rect tableColumn: (NSTableColumn *) column
|
rect: (NSRectPointer) rect tableColumn: (NSTableColumn *) column
|
||||||
|
|
Loading…
Reference in New Issue