When PPRevealSideOptionsResizeSideView is enabled, getSideViewFrameFromRootFrame will compute the height of the top side frame by the y position of rootFrame, but the y position of top side frame is 20 (not 0). It makes rootFrame and slideFrame overlap with each other, which is not supposed to happen when ResizeSideView is on.
For example, if rootFrame is (0, 410, 320, 480), slideFrame will be (0, 20, 320, 410). It creates an overlapped area (0, 410, 320, 20).
When PPRevealSideOptionsResizeSideView is enabled,
getSideViewFrameFromRootFrame
will compute the height of the top side frame by the y position ofrootFrame
, but the y position of top side frame is 20 (not 0). It makesrootFrame
andslideFrame
overlap with each other, which is not supposed to happen when ResizeSideView is on.For example, if
rootFrame
is (0, 410, 320, 480),slideFrame
will be (0, 20, 320, 410). It creates an overlapped area (0, 410, 320, 20).Expected:
Actual: