diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2013-12-24 02:21:45 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2013-12-24 02:21:45 -0800 |
commit | 2cdc6e57f47293230afbecded1c8856a0acdf52d (patch) | |
tree | d8b2c03b41aa3f9ab658f5cc5bc4648377a3a86a | |
parent | 81628115a7ac1ddd54abee383786a8bf9a0d6585 (diff) |
Satisfy Optimo's request to make Sections lighter.
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 8a9590d..2c7458b 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -708,6 +708,7 @@ static BOOL Ignored_; static _H<UIFont> Font12_; static _H<UIFont> Font12Bold_; static _H<UIFont> Font14_; +static _H<UIFont> Font18_; static _H<UIFont> Font18Bold_; static _H<UIFont> Font22Bold_; @@ -5858,7 +5859,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { if (!highlighted) UISetColor(Black_); - [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation]; + [name_ drawAtPoint:CGPointMake(48, 12) forWidth:(width - 58) withFont:Font18_ lineBreakMode:UILineBreakModeTailTruncation]; CGSize size = [count_ sizeWithFont:Font14_]; @@ -10228,6 +10229,7 @@ _trace(); Font12_ = [UIFont systemFontOfSize:12]; Font12Bold_ = [UIFont boldSystemFontOfSize:12]; Font14_ = [UIFont systemFontOfSize:14]; + Font18_ = [UIFont systemFontOfSize:18]; Font18Bold_ = [UIFont boldSystemFontOfSize:18]; Font22Bold_ = [UIFont boldSystemFontOfSize:22]; |