Update the recents section header

-> reduce the font size
-> reduce the header height
This commit is contained in:
yannick
2015-12-04 17:45:56 +01:00
parent fc5279dd5f
commit 5d484d9a63
3 changed files with 10 additions and 3 deletions
+5 -2
View File
@@ -20,6 +20,8 @@
#import "EventFormatter.h"
#import "VectorDesignValues.h"
@interface RecentsDataSource()
{
NSMutableArray* favoriteCellDataArray;
@@ -116,7 +118,7 @@
{
if ((section == favoritesSection) || (section == conversationSection) || (section == lowPrioritySection))
{
return 44.0f;
return 30.0f;
}
return 0.0f;
@@ -177,7 +179,8 @@
}
label.text = [NSString stringWithFormat:@" %@", text];
label.backgroundColor = [UIColor lightGrayColor];
label.font = [UIFont boldSystemFontOfSize:15.0];
label.backgroundColor = VECTOR_LIGHT_GRAY_COLOR;
return label;
}