Uh oh!
There was an error while loading. Please reload this page.
fixed skew transformations - #11886
Conversation
facebook-github-bot
commented
Jan 13, 2017
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 cla@fb.com. Thanks! If you are contributing on behalf of someone else (eg your employer): the individual CLA is not sufficient - use https://developers.facebook.com/opensource/cla?type=company instead. Contact cla@fb.com if you have any questions. |
facebook-github-bot
commented
Jan 14, 2017
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Facebook open source project. Thanks! |
vjeux
commented
Jan 18, 2017
@jordwalke you wrote that code, could you review it please? Thanks! |
Hi, @jordwalke. I will try in short to explain what was wrong. Was
Yes, this visually produce skewing transform but it slightly incorrect. This way affects horizontal scale as well. See this Now with PR
According to www.w3.org/css-transforms Only one differance React Native use row major matrix style, so we change |
vjeux
commented
Jan 19, 2017
Thanks for the thorough explanation, that sounds good to me. I just clicked the land button, so unless something goes wrong, it's going to ship in the next tens of minutes! Thanks! |
facebook-github-bot
commented
Jan 19, 2017
Something went wrong when importing this pull request. Please cc someone from the team at fb to help with importing this. |
# Conflicts: # Libraries/ReactNative/YellowBox.js # docs/Debugging.md
| warn.apply(console, arguments); | ||
| updateWarningMap.apply(null, arguments); | ||
| }; | ||
| <<<<<<< HEAD |
There was a problem hiding this comment.
I think something went wrong with your rebase
There was a problem hiding this comment.
@vjeux My last fork was 5 days ago, so I try to remote update to actual base, but anyway I still have unresolved 2 conflicts. What would you recommend?
vjeux
commented
Jan 19, 2017
Since your diff is so small ( 7aefe36 ), I would recommend removing this whole branch, applying it back manually and sending a force update. The git commands should look something like: gitcheckoutorigin/master;gitbranch-Dmaster;gitcheckout-bmaster;// apply the changesgitcommit// copy paste the description from githubgitpush-fMaxGraeyIn the future, I recommend that you create a branch with gitcheckout-bfix_skewthis way you don't need to work on master and you can have multiple of them going on. |
vjeux
commented
Jan 19, 2017
Looks like there are still a lot of spurious changes :( |
MaxGraey
commented
Jan 19, 2017
@vjeux I choose second approach |
Motivation:
fix#11884 issue
@sahrens@vjeux