We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09288cb commit f5e7c47Copy full SHA for f5e7c47
packages/core/src/customs/polyline.ts
@@ -1,6 +1,14 @@
1
import { fabric } from 'fabric';
2
3
export class Polyline extends fabric.Polyline {
4
+ public onSelect(options: { e?: Event | undefined }): boolean {
5
+ return super.onSelect(options);
6
+ }
7
+
8
+ public onDeselect(options: { e?: Event | undefined; object?: fabric.Object | undefined }): boolean {
9
+ return super.onDeselect(options);
10
11
12
public render(ctx: CanvasRenderingContext2D): void {
13
super.render(ctx);
14
}
0 commit comments