-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
Fix View translations in Android #3954
Conversation
Fixes regression in bf59864 Closes facebook#3773
By analyzing the blame information on this pull request, we identified @kmagiera to be a potential reviewer. |
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please sign up at https://code.facebook.com/cla - and if you have received this in error or have any questions, please drop us a line at [email protected]. Thanks! |
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Facebook open source project. Thanks! |
Also closes #3669 |
Nice catch! |
@@ -115,13 +115,13 @@ public void setScaleY(T view, float scaleY) { | |||
@Deprecated | |||
@ReactProp(name = PROP_TRANSLATE_X, defaultFloat = 1f) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like this was copy-paste kind of an issue from setScale
. Also defaultFloat
should be 0f
here instead of 1f
. Do you mind updating defaultFloat
here (and in translateY
) too to completely fix translate property related regression introduced by refactoring? Once it's done I'll be happy to merge your patch
ok, nevermind. It'd be better to merge it asap. I'll update @facebook-github-bot shipit |
Thanks for importing. If you are an FB employee go to https://our.intern.facebook.com/intern/opensource/github/pull_request/1734939810071328/int_phab to review. |
b12117a
@PhilippKrone no, I'm 99% sure this won't fix #3557 |
Summary: Fixes regression in bf59864 Closes facebook#3773 Closes facebook#3954 Reviewed By: svcscm Differential Revision: D2631180 Pulled By: kmagiera fb-gh-sync-id: 09a1a2e48fd6fff37d1491c120a28221cdc1b163
Summary: Fixes regression in bf59864 Closes facebook#3773 Closes facebook#3954 Reviewed By: svcscm Differential Revision: D2631180 Pulled By: kmagiera fb-gh-sync-id: 09a1a2e48fd6fff37d1491c120a28221cdc1b163
@kmagiera Is there a reason this was not included in 0.15.0? The transitions for Android are still broken. |
@6i6arka I was wondering the same thing. |
@fender we did a branch cut for 0.15 on Nov 6 (f7af7d2) and this was merged on Nov 9. It made it to 0.16-rc though so should be out next week I believe (cc @mkonicek). You can find some information about release process for RN here: https://facebook.github.io/react/blog/2015/05/22/react-native-release-process.html |
Summary: Fixes regression in bf59864 Closes facebook#3773 Closes facebook#3954 Reviewed By: svcscm Differential Revision: D2631180 Pulled By: kmagiera fb-gh-sync-id: 09a1a2e48fd6fff37d1491c120a28221cdc1b163
Fixes regression in bf59864
Closes #3773