From 7f96382b0182971b80c46c1c83f1c720c56eb39c Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 26 Jan 2009 13:13:30 +0000 Subject: [PATCH] Forgot to fix the other half of indexing. --- Cydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.45.2