Fix iOS open menu being drawn outside of the viewport

This commit is contained in:
Andrej Beliakov 2020-01-08 14:21:47 +01:00
parent 45f5889ccd
commit 89047e5772

View File

@ -88,7 +88,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
wasOpened = [docController presentPreviewAnimated: NO];
} else {
CDVViewController* cont = self.cdvViewController;
CGRect rect = CGRectMake(0, 0, cont.view.bounds.size.width, cont.view.bounds.size.height);
CGRect rect = CGRectMake(cont.view.bounds.size.width, 0, cont.view.bounds.size.height, 0);
wasOpened = [docController presentOpenInMenuFromRect:rect inView:cont.view animated:YES];
}