Skip to content

Commit

Permalink
wrote hidden value even if default is not changed (microsoft#4920)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoo-msft authored Oct 21, 2020
1 parent 84e44e6 commit 354f937
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ void configVisibility(UIView *view, std::shared_ptr<BaseCardElement> const &visi
{
if (!visibilityInfo->GetIsVisible()) {
view.hidden = YES;
} else {
view.hidden = NO;
}

NSString *hashkey = [NSString stringWithCString:visibilityInfo->GetId().c_str()
encoding:NSUTF8StringEncoding];
view.tag = hashkey.hash;
Expand Down

0 comments on commit 354f937

Please sign in to comment.