Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
* [iOS] bugfix about leftGap and rightGap
Browse files Browse the repository at this point in the history
  • Loading branch information
acton393 committed Feb 12, 2018
1 parent 3c72523 commit 898f6b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ - (void)setColumnGap:(float)columnGap

- (void)setLeftGap:(float)leftGap
{
if (_rightGap != leftGap) {
_rightGap = leftGap;
if (_leftGap != leftGap) {
_leftGap = leftGap;
[self _cleanComputed];
}
}
Expand Down

0 comments on commit 898f6b9

Please sign in to comment.