diff options
author | Rodeo <[email protected]> | 2013-04-12 18:55:41 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-04-12 18:55:41 +0000 |
commit | 4d52079c19a262d5de3a0dbf0352ab5fc7ae056d (patch) | |
tree | 498e780f2b00f0b8c6723ad127b9058875e93c6e | |
parent | 0776b0b066030da0222ec1074fdb2990a8486b1c (diff) |
MacGui: don't mention grayscale twice in the queue display.
Since it's mentioned in the filter summary, we don't need to repeat it in the picture summary.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5394 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBQueueController.mm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index 5a0dc2fe8..92e9dafc8 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -1155,11 +1155,6 @@ return ![(HBQueueOutlineView*)outlineView isDragging]; pictureInfo = [pictureInfo stringByAppendingString:@" Keep Aspect Ratio"]; } - if ([[item objectForKey:@"VideoGrayScale"] intValue] == 1) - { - pictureInfo = [pictureInfo stringByAppendingString:@", Grayscale"]; - } - [finalString appendString: @"Picture: " withAttributes:detailBoldAttr]; [finalString appendString: pictureInfo withAttributes:detailAttr]; [finalString appendString:@"\n" withAttributes:detailAttr]; |