We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1d93d1 + 683461c commit 5913385Copy full SHA for 5913385
JASidePanels/Source/JASidePanelController.m
@@ -609,6 +609,8 @@ - (CGFloat)_correctMovement:(CGFloat)movement {
609
} else if (self.state == JASidePanelRightVisible && !self.allowRightOverpan) {
610
if (position < -self.rightVisibleWidth) {
611
return 0.0f;
612
+ } else if ((self.style == JASidePanelMultipleActive || self.pushesSidePanels) && position > 0.0f) {
613
+ return -_centerPanelRestingFrame.origin.x;
614
} else if (position > self.rightPanelContainer.frame.origin.x) {
615
return self.rightPanelContainer.frame.origin.x - _centerPanelRestingFrame.origin.x;
616
}
0 commit comments