Skip to content

Commit

Permalink
fixed showcard not closing (microsoft#1544)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoo-msft committed Jun 1, 2018
1 parent b5f1695 commit 88d6e72
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -131,8 +131,9 @@ - (void)createShowCard:(NSMutableArray*)inputs

- (IBAction)toggleVisibilityOfShowCard
{
BOOL hidden = _adcView.hidden;
[_superview hideAllShowCards];
_adcView.hidden = (_adcView.hidden == YES)? NO: YES;
_adcView.hidden = (hidden == YES)? NO: YES;
[_rootView.acrActionDelegate didFetchUserResponses:[_rootView card] action:_actionElement];
}

Expand Down

0 comments on commit 88d6e72

Please sign in to comment.