diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-12-07 02:16:40 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-01 14:32:06 -0800 |
commit | 8cfba08862aa81912f30886736d16bf3cc5d89a2 (patch) | |
tree | 6964e30bd079a9fcfadb7f58cba57b09b058678f | |
parent | 75b9525607c341f52e51ff855dbc5799f47b0499 (diff) |
Do not highlight section cell text while editing.
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 97fa45c..2756250 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5176,7 +5176,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (void) drawContentRect:(CGRect)rect { - bool highlighted(highlighted_); + bool highlighted(highlighted_ && !editing_); [icon_ drawInRect:CGRectMake(8, 7, 32, 32)]; |