From: Jay Freeman (saurik) Date: Mon, 26 Jan 2009 13:13:30 +0000 (+0000) Subject: Forgot to fix the other half of indexing. X-Git-Tag: v1.0.3366~308 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/5d774a8892d28544253b65ef85916e5848dba716?ds=inline Forgot to fix the other half of indexing. --- diff --git a/Cydia.mm b/Cydia.mm index 2afe6eee..aba5704b 100644 --- a/Cydia.mm +++ b/Cydia.mm @@ -2273,7 +2273,7 @@ class Progress : - (Section *) initWithIndex:(unichar)index row:(size_t)row { if ((self = [super init]) != nil) { - name_ = [[NSString stringWithCharacters:&index length:1] retain]; + name_ = [(index == '#' ? @"123" : [NSString stringWithCharacters:&index length:1]) retain]; index_ = index; row_ = row; } return self;