summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2018-02-03 15:17:37 -0500
committerBradley Sepos <[email protected]>2018-03-17 17:01:56 -0400
commitafc34ed12e616dfc3f86f80c7e5e1ba03fb53e2a (patch)
treed2fef988248164019780b0b45b1169f4051a8715
parentf12d627ab10aeb652bf6a083696efd82327a2c92 (diff)
MacGUI: Rename Picture to Dimensions and move Destination on Queue jobs.
Consistent with the main window naming and flow.
-rw-r--r--macosx/HBJob+UIAdditions.m14
1 files changed, 7 insertions, 7 deletions
diff --git a/macosx/HBJob+UIAdditions.m b/macosx/HBJob+UIAdditions.m
index 86f9b348e..a4a603699 100644
--- a/macosx/HBJob+UIAdditions.m
+++ b/macosx/HBJob+UIAdditions.m
@@ -235,7 +235,7 @@ static NSDictionary *shortHeightAttr;
return attrString;
}
-- (NSAttributedString *)pictureAttributedDescription
+- (NSAttributedString *)dimensionsAttributedDescription
{
NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] init];
@@ -244,10 +244,10 @@ static NSDictionary *shortHeightAttr;
{
pictureInfo = [pictureInfo stringByAppendingString:@" Keep Aspect Ratio"];
}
- [attrString appendString:@"\tPicture: " withAttributes:detailBoldAttr];
- [attrString appendString:@"\t" withAttributes:detailAttr];
- [attrString appendString:pictureInfo withAttributes:detailAttr];
- [attrString appendString:@"\n" withAttributes:detailAttr];
+ [attrString appendString:@"\tDimensions: " withAttributes:detailBoldAttr];
+ [attrString appendString:@"\t" withAttributes:detailAttr];
+ [attrString appendString:pictureInfo withAttributes:detailAttr];
+ [attrString appendString:@"\n" withAttributes:detailAttr];
return attrString;
}
@@ -600,8 +600,7 @@ static NSDictionary *shortHeightAttr;
[attrString appendAttributedString:[self titleAttributedDescription]];
[attrString appendAttributedString:[self presetAttributedDescription]];
[attrString appendAttributedString:[self formatAttributedDescription]];
- [attrString appendAttributedString:[self destinationAttributedDescription]];
- [attrString appendAttributedString:[self pictureAttributedDescription]];
+ [attrString appendAttributedString:[self dimensionsAttributedDescription]];
[attrString appendAttributedString:[self filtersAttributedDescription]];
[attrString appendAttributedString:[self videoAttributedDescription]];
if (self.audio.countOfTracks > 1)
@@ -612,6 +611,7 @@ static NSDictionary *shortHeightAttr;
{
[attrString appendAttributedString:[self subtitlesAttributedDescription]];
}
+ [attrString appendAttributedString:[self destinationAttributedDescription]];
}
[attrString deleteCharactersInRange:NSMakeRange(attrString.length - 1, 1)];