Skip to content

Commit

Permalink
iOS: Fixed warning about adding rootViewController view to view hiera…
Browse files Browse the repository at this point in the history
…rchy
  • Loading branch information
ed95 committed Jul 20, 2020
1 parent 54f6525 commit 8152b21
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,6 @@ - (void) becomeKeyWindow
window.windowLevel = UIWindowLevelAlert;

view.frame = CGRectMake (0, 0, r.size.width, r.size.height);

[window addSubview: view];
}

setTitle (component.getName());
Expand Down

1 comment on commit 8152b21

@benediktadams
Copy link

@benediktadams benediktadams commented on 8152b21 Jul 31, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

this seems to break ContentSharing on iOS. The UI just freezes up, when calling ContentSharer::shareFiles (). Reverting this commit everything works again as expected.

//Edit:
This fixes it
f85d362

Please sign in to comment.