mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
fix type-select with groups
This commit is contained in:
parent
a28583b50b
commit
d9f8018c49
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@
|
||||||
- (NSString *) outlineView: (NSOutlineView *) outlineView typeSelectStringForTableColumn: (NSTableColumn *) tableColumn item: (id) item
|
- (NSString *) outlineView: (NSOutlineView *) outlineView typeSelectStringForTableColumn: (NSTableColumn *) tableColumn item: (id) item
|
||||||
{
|
{
|
||||||
return [item isKindOfClass: [Torrent class]] ? [item name]
|
return [item isKindOfClass: [Torrent class]] ? [item name]
|
||||||
: [[self preparedCellAtColumn: -1 row: [self rowForItem: item]] stringValue];
|
: [[self preparedCellAtColumn: [self columnWithIdentifier: @"Group"] row: [self rowForItem: item]] stringValue];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) updateTrackingAreas
|
- (void) updateTrackingAreas
|
||||||
|
|
Loading…
Reference in a new issue