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
Selecting then deselecting a polyline throws an error. To reproduce:
Make a polyline, e.g. let arrow = new fabric.Polyline([{ x: 200, y: 10 }, { x: 250, y: 50 }], {
stroke: 'green' }); canvas.add(arrow).renderAll()
Select the line (click on it)
deselect the line by clicking somewhere else.
Expected: deselecting the line
Got: fabric-extensions.umd.js:2133 Uncaught TypeError: Cannot read property 'right' of undefined
Note that this behaviour does not show after double clicking on the line/entering then exiting editing mode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Selecting then deselecting a polyline throws an error.
To reproduce:
Make a polyline, e.g.
let arrow = new fabric.Polyline([{
x: 200,
y: 10
}, {
x: 250,
y: 50
}], {
Select the line (click on it)
deselect the line by clicking somewhere else.
Expected: deselecting the line
Got: fabric-extensions.umd.js:2133 Uncaught TypeError: Cannot read property 'right' of undefined
Note that this behaviour does not show after double clicking on the line/entering then exiting editing mode
The text was updated successfully, but these errors were encountered: