]> git.saurik.com Git - winterboard.git/commitdiff
Adapt label width for label width.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 20 Oct 2011 01:21:17 +0000 (01:21 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 20 Oct 2011 01:21:17 +0000 (01:21 +0000)
Library.mm

index 198ddbe79790153dd3404f8446b761446f9e62af..6b1d4fa4b3575d11fba545ed25481232fc8c9134 100644 (file)
@@ -1417,7 +1417,7 @@ MSInstanceMessageHook1(void, SBIconLabel, drawRect, CGRect, rect) {
         style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
 
     bool ellipsis(false);
-    float max = 75, width;
+    float max = [self frame].size.width - 11, width;
   width:
     width = [(ellipsis ? [label stringByAppendingString:@"..."] : label) sizeWithStyle:style forWidth:320].width;