Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible bug in getImageSizeScaleTo #200

Closed
elincognito opened this issue Mar 8, 2013 · 2 comments
Closed

Possible bug in getImageSizeScaleTo #200

elincognito opened this issue Mar 8, 2013 · 2 comments
Labels

Comments

@elincognito
Copy link

in file/class ImageLoader line :

we have

 int height = params.height != LayoutParams.WRAP_CONTENT ? 0 :    imageView.getHeight(); // Get actual image height

shouldn't it be ?

int height = params.height == LayoutParams.WRAP_CONTENT ? 0 : imageView.getHeight(); // Get actual image height
@nostra13
Copy link
Owner

nostra13 commented Mar 8, 2013

Damn :) Yes, it should be.

@nostra13
Copy link
Owner

nostra13 commented Mar 8, 2013

Fixed lib jar - here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants