Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
yh_sdwebimage
·
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
Bill Burgess
2014-04-29 10:27:54 -0500
Commit
9a45faac3f9169bd78fff9a63175eeec3c410657
1 parent
7ca81d0e
Wrapped placeholder check in parens to work with bitwise
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
SDWebImage/UIImageView+WebCache.m
SDWebImage/UIImageView+WebCache.m
View file @
9a45faa
...
...
@@ -55,7 +55,7 @@ static char operationArrayKey;
wself
.
image
=
image
;
[
wself
setNeedsLayout
]
;
}
else
{
if
(
options
&
SDWebImageDelayPlaceholder
)
{
if
(
(
options
&
SDWebImageDelayPlaceholder
)
)
{
wself
.
image
=
placeholder
;
[
wself
setNeedsLayout
]
;
}
...
...
Please
register
or
login
to post a comment