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
eac9ac89bfe52a2923411168506e35a30047f829
1 parent
965c061e
fix mac build
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
Masonry/MASCompositeConstraint.m
Masonry/MASViewConstraint.m
Masonry/MASCompositeConstraint.m
View file @
eac9ac8
...
...
@@ -185,7 +185,7 @@
#pragma mark - NSLayoutConstraint constant setters
-
(
void
)
setInsets
:
(
UI
EdgeInsets
)
insets
{
-
(
void
)
setInsets
:
(
MAS
EdgeInsets
)
insets
{
for
(
id
<
MASConstraint
>
constraint
in
self
.
childConstraints
)
{
constraint
.
insets
=
insets
;
}
...
...
Masonry/MASViewConstraint.m
View file @
eac9ac8
...
...
@@ -243,7 +243,7 @@
#pragma mark - NSLayoutConstraint constant setters
-
(
void
)
setInsets
:
(
UI
EdgeInsets
)
insets
{
-
(
void
)
setInsets
:
(
MAS
EdgeInsets
)
insets
{
NSLayoutAttribute
layoutAttribute
=
self
.
firstViewAttribute
.
layoutAttribute
;
switch
(
layoutAttribute
)
{
case
NSLayoutAttributeLeft
:
...
...
Please
register
or
login
to post a comment