From: Jay Freeman (saurik) Date: Sat, 12 Mar 2011 18:52:00 +0000 (-0800) Subject: Use the correct color for 'Loading...'. X-Git-Tag: v1.1.0%b7~38 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/c8910aa3d4e4dfeb66d91351e05d33a93728ee0b?ds=inline Use the correct color for 'Loading...'. --- diff --git a/Cydia/LoadingView.mm b/Cydia/LoadingView.mm index 2a93eb9c..b66fe6d7 100644 --- a/Cydia/LoadingView.mm +++ b/Cydia/LoadingView.mm @@ -54,7 +54,7 @@ label_ = [[[UILabel alloc] init] autorelease]; [label_ setFont:[UIFont boldSystemFontOfSize:15.0f]]; [label_ setBackgroundColor:[UIColor clearColor]]; - [label_ setTextColor:[UIColor blackColor]]; + [label_ setTextColor:[UIColor viewFlipsideBackgroundColor]]; [label_ setShadowColor:[UIColor whiteColor]]; [label_ setShadowOffset:CGSizeMake(0, 1)]; [label_ setText:[NSString stringWithFormat:Elision_, UCLocalize("LOADING"), nil]];