]> git.saurik.com Git - winterboard.git/commitdiff
Make transcript cells transparent.
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 19 Oct 2011 06:10:21 +0000 (06:10 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 19 Oct 2011 06:10:21 +0000 (06:10 +0000)
Library.mm

index 42c43097b30da1e6749d0310d02bff99076d6766..d7946b4a56c9789872ab11180f019765bdbe43b8 100644 (file)
@@ -123,6 +123,7 @@ MSClassHook(UIToolbar)
 
 MSClassHook(CKMessageCell)
 MSClassHook(CKTimestampView)
+MSClassHook(CKTranscriptCell)
 MSClassHook(CKTranscriptController)
 MSClassHook(CKTranscriptTableView)
 
@@ -1456,6 +1457,13 @@ MSInstanceMessageHook1(void, CKMessageCell, addBalloonView, CKBalloonView *, bal
     [balloon setBackgroundColor:[UIColor clearColor]];
 }
 
+MSInstanceMessageHook2(id, CKTranscriptCell, initWithStyle,reuseIdentifier, int, style, NSString *, reuse) {
+    if ((self = MSOldCall(style, reuse)) != nil) {
+        [self setBackgroundColor:[UIColor clearColor]];
+        [[self contentView] setBackgroundColor:[UIColor clearColor]];
+    } return self;
+}
+
 MSInstanceMessageHook2(id, CKMessageCell, initWithStyle,reuseIdentifier, int, style, NSString *, reuse) {
     if ((self = MSOldCall(style, reuse)) != nil) {
         [self setBackgroundColor:[UIColor clearColor]];