Fixed empty group avatar issue.

pull/1/head
Christine Corbett 11 years ago committed by Frederic Jacobs
parent bf11775e10
commit 0e1a51e889

@ -5271,7 +5271,7 @@ A0 09 9A FF A8 8A 09 99</string>
<variation key="heightClass=regular-widthClass=compact" constant="60"/> <variation key="heightClass=regular-widthClass=compact" constant="60"/>
</constraint> </constraint>
</constraints> </constraints>
<state key="normal" image="empty-group-avatar@1x"> <state key="normal" image="empty-group-avatar">
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/> <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
</state> </state>
<variation key="default"> <variation key="default">
@ -5475,7 +5475,7 @@ A0 09 9A FF A8 8A 09 99</string>
<image name="call_dark.png" width="50" height="50"/> <image name="call_dark.png" width="50" height="50"/>
<image name="contact-options-action" width="44" height="44"/> <image name="contact-options-action" width="44" height="44"/>
<image name="delete_history.png" width="50" height="50"/> <image name="delete_history.png" width="50" height="50"/>
<image name="empty-group-avatar@1x" width="500" height="500"/> <image name="empty-group-avatar" width="52" height="52"/>
<image name="endcall.png" width="100" height="100"/> <image name="endcall.png" width="100" height="100"/>
<image name="inbox-active@1x" width="66" height="66"/> <image name="inbox-active@1x" width="66" height="66"/>
<image name="inbox-inactive@1x" width="66" height="66"/> <image name="inbox-inactive@1x" width="66" height="66"/>

@ -49,7 +49,7 @@
_snippetLabel.text = thread.lastMessageLabel; _snippetLabel.text = thread.lastMessageLabel;
_timeLabel.attributedText = [self dateAttributedString:thread.lastMessageDate]; _timeLabel.attributedText = [self dateAttributedString:thread.lastMessageDate];
if([thread isKindOfClass:[TSGroupThread class]] ) { if([thread isKindOfClass:[TSGroupThread class]] ) {
_contactPictureView.image = ((TSGroupThread*)thread).groupModel.groupImage!=nil ? ((TSGroupThread*)thread).groupModel.groupImage : [UIImage imageNamed:@"empty-group-avatar@1x"]; _contactPictureView.image = ((TSGroupThread*)thread).groupModel.groupImage!=nil ? ((TSGroupThread*)thread).groupModel.groupImage : [UIImage imageNamed:@"empty-group-avatar"];
} }
else { else {
NSMutableString *initials = [NSMutableString string]; NSMutableString *initials = [NSMutableString string];

Loading…
Cancel
Save