Forgot to fix the other half of indexing.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 26 Jan 2009 13:13:30 +0000 (13:13 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 30 Sep 2010 07:09:43 +0000 (07:09 +0000)
Cydia.mm

index 2afe6eeec347aa8a3475f48b2a4331bfb7e99932..aba5704bb6f0dd63a8a7b2e49602988f6c780e8d 100644 (file)
--- 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;