fengyuanchen / photo-editor

A simple photo editing application.
https://fengyuanchen.github.io/photo-editor
MIT License
936 stars 238 forks source link

after rotation, flip horizontal/vertical buttons are swapped #1

Closed danj closed 7 years ago

danj commented 8 years ago

scenario: load image rotate 90 flip horizontal

result: flips vertical

fengyuanchen commented 8 years ago

Because you had rotated it, then the flip seems working incorrectly. But you can check the style on the image, it is right:

transform: rotate(90deg) scale(-1, 1);
danj commented 8 years ago

you're correct, I just think the behaviour doesn't make sense.