RESideMenu icon indicating copy to clipboard operation
RESideMenu copied to clipboard

Overscrolling the menu when set custom contentViewInPortraitOffsetCenterX value

Open sasnik opened this issue 9 years ago • 0 comments

To stop menu from overscrolling please change following:

RESSideMenu.m (Lines 614-618)

    if (point.x < 0) {
        point.x = MAX(point.x, -[UIScreen mainScreen].bounds.size.width/2 - _contentViewInPortraitOffsetCenterX);
    } else {
        point.x = MIN(point.x, [UIScreen mainScreen].bounds.size.width/2 + _contentViewInPortraitOffsetCenterX);
    }

sasnik avatar Aug 28 '15 15:08 sasnik