From 6c1ec3c77ad3a240bd8b39879844488222f24d1f Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 30 Sep 2013 04:23:39 -0700 Subject: [PATCH] Fix text width of editing section cells on iOS 7. --- MobileCydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileCydia.mm b/MobileCydia.mm index ef92bc45..661e402d 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5839,7 +5839,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { float width(rect.size.width); if (editing_) - width -= 87; + width -= 9 + [switch_ frame].size.width; if (!highlighted) UISetColor(Black_); -- 2.45.2