mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-01 05:36:57 +02:00
VectorDesignValues: Load Vector colors at the app load time for the life of the app
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
[_roomAvatar.layer setCornerRadius:_roomAvatar.frame.size.width / 2];
|
||||
_roomAvatar.clipsToBounds = YES;
|
||||
|
||||
self.roomTitle.textColor = VECTOR_TEXT_BLACK_COLOR;
|
||||
self.roomTitle.textColor = kVectorTextColorBlack;
|
||||
}
|
||||
|
||||
- (void)render:(MXKCellData *)cellData
|
||||
@@ -69,14 +69,14 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
self.bingIndicator.backgroundColor = VECTOR_SILVER_COLOR;
|
||||
self.lastEventDate.textColor = VECTOR_TEXT_GRAY_COLOR;
|
||||
self.bingIndicator.backgroundColor = kVectorColorSiver;
|
||||
self.lastEventDate.textColor = kVectorTextColorGray;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
self.bingIndicator.hidden = YES;
|
||||
self.lastEventDate.textColor = VECTOR_TEXT_GRAY_COLOR;
|
||||
self.lastEventDate.textColor = kVectorTextColorGray;
|
||||
}
|
||||
|
||||
self.roomAvatar.backgroundColor = [UIColor clearColor];
|
||||
|
||||
Reference in New Issue
Block a user