From: Ryan Petrich Date: Thu, 23 Sep 2010 08:49:44 +0000 (-0600) Subject: Fix keyboard animation when selecting package from search controller when keyboard... X-Git-Tag: v1.0.3366~162 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/8e05f686bc60df745ab6b8484dda44379db9757f Fix keyboard animation when selecting package from search controller when keyboard is up --- diff --git a/Cydia.mm b/Cydia.mm index b546ec9f..a88eff07 100644 --- a/Cydia.mm +++ b/Cydia.mm @@ -7213,6 +7213,11 @@ freeing the view controllers on tab change */ [packages_ resetCursor]; } +- (void) didSelectPackage:(Package *)package { + [search_ resignFirstResponder]; + [super didSelectPackage:package]; +} + @end /* }}} */ /* Settings Controller {{{ */