summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-10 22:46:31 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-10 22:46:31 -0800
commit8f2da195b784c9f8c75ec5c336f9020a3537dd49 (patch)
tree8219720f61a05bc764cf0fc0cef41414b1ca5d16
parent53db99998b1cc4e9be0ab46337a2f4c7ed259605 (diff)
Allow slightly wider text on source cells.
-rw-r--r--MobileCydia.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index c2d6b5e..62aed8a 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -8082,11 +8082,11 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
if (!highlighted)
UISetColor(Black_);
- [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
+ [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 60) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
if (!highlighted)
UISetColor(Blue_);
- [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
+ [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 75) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
}
@end