We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's not possible to set the rx and ry values of a Rect with its constructor.
var background = new fabric.Rect({ left: 0, top: 0, fill: '#FF0000', width: 100, height: 100, active: false, rx: 10, ry: 10 });
It's only working if I set it after initialization:
var background = new fabric.Rect({ left: 0, top: 0, fill: '#FF0000', width: 100, height: 100, active: false }); background.rx = 8; background.ry = 8;
Or am I missing something? ;) greetz Lufti
The text was updated successfully, but these errors were encountered:
Thanks! Fixed in 03561f7
Sorry, something went wrong.
Merge pull request #16 from kangax/master
7a214b6
sync to master
No branches or pull requests
It's not possible to set the rx and ry values of a Rect with its constructor.
It's only working if I set it after initialization:
Or am I missing something? ;)
greetz Lufti
The text was updated successfully, but these errors were encountered: