diff --git a/NEWS b/NEWS index 310909a0a..e7ef9b7f1 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ NEWS file for Transmission +1.30 (2008/mm/dd) +http://trac.transmissionbt.com/query?group=component&milestone=1.30 +- Mac + + Status strings are toggled from the action menu (they are no longer clickable) + 1.20 (2008/05/09) http://trac.transmissionbt.com/query?group=component&milestone=1.20 - All Platforms diff --git a/macosx/TorrentCell.h b/macosx/TorrentCell.h index e3337d2ca..d14773fb8 100644 --- a/macosx/TorrentCell.h +++ b/macosx/TorrentCell.h @@ -39,8 +39,7 @@ * fGreenGradient, * fLightGreenGradient, * fDarkGreenGradient, * fYellowGradient, * fRedGradient, * fTransparentGradient; - NSColor * fGrayColor, * fBlueColor, * fBlue1Color, * fBlue2Color, * fBlue3Color, * fBlue4Color, * fOrangeColor, - * fFieldBackColor; + NSColor * fGrayColor, * fBlueColor, * fBlue1Color, * fBlue2Color, * fBlue3Color, * fBlue4Color, * fOrangeColor; NSBitmapImageRep * fBitmap; } diff --git a/macosx/TorrentCell.m b/macosx/TorrentCell.m index e173749a8..96ded181f 100644 --- a/macosx/TorrentCell.m +++ b/macosx/TorrentCell.m @@ -107,8 +107,6 @@ fOrangeColor = [[NSColor orangeColor] retain]; fBarOverlayColor = [[NSColor colorWithDeviceWhite: 0.0 alpha: 0.2] retain]; - - fFieldBackColor = [[NSColor colorWithDeviceWhite: 0.65 alpha: 0.7] retain]; } return self; } @@ -474,7 +472,7 @@ } //minimal status - NSRect minimalStatusRect = NSZeroRect; + NSRect minimalStatusRect; if (minimal) { NSAttributedString * minimalString = [self attributedStatusString: [self minimalStatusString] withColor: statusColor];