End-to-end encryption UI/UX

#723

- fix Manu's comment
This commit is contained in:
giomfo
2016-11-16 10:46:25 +01:00
parent c79e84f4d6
commit 9fdbc258bc
@@ -313,13 +313,9 @@ static NSAttributedString *verticalWhitespace = nil;
+ (NSAttributedString *)verticalWhitespace
{
@synchronized(self)
if (verticalWhitespace == nil)
{
if (verticalWhitespace == nil)
{
verticalWhitespace = [[NSAttributedString alloc] initWithString:@"\n\n" attributes:@{NSForegroundColorAttributeName : [UIColor blackColor],
NSFontAttributeName: [UIFont systemFontOfSize:4]}];
}
verticalWhitespace = [[NSAttributedString alloc] initWithString:@"\n\n" attributes:@{NSFontAttributeName: [UIFont systemFontOfSize:4]}];
}
return verticalWhitespace;
}