fix auth-viewcontroller unusable after failed authentication

This commit is contained in:
Stephan Diederich
2013-09-10 23:57:00 +02:00
parent 34bf1bf611
commit 1938e480cc
2 changed files with 13 additions and 8 deletions

View File

@@ -294,8 +294,8 @@
}
- (void) setLoginUIEnabled:(BOOL) enabled {
self.navigationItem.rightBarButtonItem.enabled = !enabled;
self.tableView.userInteractionEnabled = !enabled;
self.navigationItem.rightBarButtonItem.enabled = enabled;
self.tableView.userInteractionEnabled = enabled;
}
@end