mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 18:23:51 +00:00
fix ipad crash on doc picker
This commit is contained in:
@@ -152,6 +152,13 @@ namespace Bit.iOS.Services
|
|||||||
e.DocumentPicker.DidPickDocument += DocumentPicker_DidPickDocument;
|
e.DocumentPicker.DidPickDocument += DocumentPicker_DidPickDocument;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var root = UIApplication.SharedApplication.KeyWindow.RootViewController;
|
||||||
|
if(picker.PopoverPresentationController != null && root != null)
|
||||||
|
{
|
||||||
|
picker.PopoverPresentationController.SourceView = root.View;
|
||||||
|
picker.PopoverPresentationController.SourceRect = root.View.Bounds;
|
||||||
|
}
|
||||||
|
|
||||||
controller.PresentViewController(picker, true, null);
|
controller.PresentViewController(picker, true, null);
|
||||||
return Task.FromResult(0);
|
return Task.FromResult(0);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user