Skip to content

Commit

Permalink
Fix Airmail#8
Browse files Browse the repository at this point in the history
Fixes bug Airmail#8 with a hack around Airmail#14 using a timer.
  • Loading branch information
tylermenezes committed Feb 8, 2015
1 parent d0f8cea commit 9c672ca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions AMPGpg/AMPGpg/AMPGpg.m
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ - (NSArray*) ampPileComposerView:(AMPComposerInfo *)info
rememberChoice:self.rememberChoice];
[signBtn setToolTip:NSLocalizedString(@"PGP Sign/Unsign",@"PGP Sign/Unsign")];
[v addSubview:signBtn];

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
[self ampPileChangedRecipients:info];
});

return @[v];
}

Expand Down

0 comments on commit 9c672ca

Please sign in to comment.