Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
Masonry
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Jonas Budelmann
11 years ago
Commit
879268b9273866257a56442e90e4a0f750789961
1 parent
401d86c1
use setter for animator constant
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
Masonry/MASViewConstraint.m
Masonry/MASViewConstraint.m
View file @
879268b
...
...
@@ -57,8 +57,8 @@
_layoutConstant
=
layoutConstant
;
#if TARGET_OS_MAC && !TARGET_OS_IPHONE
if
(
self
.
useAnimator
)
{
self
.
layoutConstraint
.
animator
.
constant
=
layoutConstant
;
if
(
self
.
useAnimator
)
{
[
self
.
layoutConstraint
.
animator
setConstant
:
layoutConstant
];
}
else
{
self
.
layoutConstraint
.
constant
=
layoutConstant
;
}
...
...
Please
register
or
login
to post a comment