From: Jay Freeman (saurik) Date: Wed, 19 Oct 2011 06:01:07 +0000 (+0000) Subject: Make the CKMessageCell clear. X-Git-Tag: v0.9.3901~3 X-Git-Url: https://git.saurik.com/winterboard.git/commitdiff_plain/bcb4613200b76180dd6a7e9c7b111f3f66bfe011 Make the CKMessageCell clear. --- diff --git a/Library.mm b/Library.mm index aae2063..42c4309 100644 --- a/Library.mm +++ b/Library.mm @@ -1458,6 +1458,7 @@ MSInstanceMessageHook1(void, CKMessageCell, addBalloonView, CKBalloonView *, bal MSInstanceMessageHook2(id, CKMessageCell, initWithStyle,reuseIdentifier, int, style, NSString *, reuse) { if ((self = MSOldCall(style, reuse)) != nil) { + [self setBackgroundColor:[UIColor clearColor]]; [[self contentView] setBackgroundColor:[UIColor clearColor]]; } return self; }