|
|
|
@ -1413,9 +1413,8 @@ typedef enum : NSUInteger {
|
|
|
|
|
UIColor *subtitleColor = [UIColor.ows_navbarTitleColor colorWithAlphaComponent:(CGFloat)0.9];
|
|
|
|
|
if (self.thread.isMuted) {
|
|
|
|
|
// Show a "mute" icon before the navigation bar subtitle if this thread is muted.
|
|
|
|
|
[subtitleText
|
|
|
|
|
appendAttributedString:[[NSAttributedString alloc]
|
|
|
|
|
initWithString:@"\ue067 "
|
|
|
|
|
[subtitleText appendAttributedString:[[NSAttributedString alloc]
|
|
|
|
|
initWithString:LocalizationNotNeeded(@"\ue067 ")
|
|
|
|
|
attributes:@{
|
|
|
|
|
NSFontAttributeName : [UIFont ows_elegantIconsFont:7.f],
|
|
|
|
|
NSForegroundColorAttributeName : subtitleColor
|
|
|
|
@ -1432,9 +1431,8 @@ typedef enum : NSUInteger {
|
|
|
|
|
}
|
|
|
|
|
if (isVerified) {
|
|
|
|
|
// Show a "checkmark" icon before the navigation bar subtitle if this thread is verified.
|
|
|
|
|
[subtitleText
|
|
|
|
|
appendAttributedString:[[NSAttributedString alloc]
|
|
|
|
|
initWithString:@"\uf00c "
|
|
|
|
|
[subtitleText appendAttributedString:[[NSAttributedString alloc]
|
|
|
|
|
initWithString:LocalizationNotNeeded(@"\uf00c ")
|
|
|
|
|
attributes:@{
|
|
|
|
|
NSFontAttributeName : [UIFont ows_fontAwesomeFont:10.f],
|
|
|
|
|
NSForegroundColorAttributeName : subtitleColor,
|
|
|
|
|