Skip to content

Commit

Permalink
MacGui: increase the indent space in the queue details view.
Browse files Browse the repository at this point in the history
  • Loading branch information
galad87 committed Dec 23, 2021
1 parent ab4f16a commit 55ad626
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions macosx/HBJob+UIAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ - (void)initStyles
{
// Attributes
NSMutableParagraphStyle *ps = [NSParagraphStyle.defaultParagraphStyle mutableCopy];
ps.headIndent = 88.0;
ps.headIndent = 100;
ps.paragraphSpacing = 1.0;
ps.tabStops = @[[[NSTextTab alloc] initWithType:NSRightTabStopType location:88],
[[NSTextTab alloc] initWithType:NSLeftTabStopType location:90]];
ps.tabStops = @[[[NSTextTab alloc] initWithType:NSRightTabStopType location:98],
[[NSTextTab alloc] initWithType:NSLeftTabStopType location:100]];

detailAttr = @{NSFontAttributeName: [NSFont systemFontOfSize:NSFont.smallSystemFontSize],
NSParagraphStyleAttributeName: ps,
Expand Down
6 changes: 3 additions & 3 deletions macosx/HBQueueJobItem.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ + (void)initialize

// Attributes
NSMutableParagraphStyle *ps = [NSParagraphStyle.defaultParagraphStyle mutableCopy];
ps.headIndent = 88;
ps.headIndent = 100;
ps.paragraphSpacing = 1.0;
ps.tabStops = @[[[NSTextTab alloc] initWithType:NSRightTabStopType location:88],
[[NSTextTab alloc] initWithType:NSLeftTabStopType location:90]];
ps.tabStops = @[[[NSTextTab alloc] initWithType:NSRightTabStopType location:98],
[[NSTextTab alloc] initWithType:NSLeftTabStopType location:100]];

detailAttr = @{NSFontAttributeName: [NSFont systemFontOfSize:NSFont.smallSystemFontSize],
NSParagraphStyleAttributeName: ps,
Expand Down
2 changes: 1 addition & 1 deletion macosx/it.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
"Show Preview Window" = "Mostra finestra di anteprima";

/* Job statistics */
"Size:" = "Dim.:";
"Size:" = "Dimensione:";

/* Queue Alert -> cancel rip second button */
"Skip Current Job" = "Salta lavoro attuale";
Expand Down

0 comments on commit 55ad626

Please sign in to comment.