删除框选线色配置项

This commit is contained in:
walker 2023-09-01 16:28:54 +08:00
parent 4fb52cc103
commit c66f841526

View File

@ -20,10 +20,6 @@ export interface IMouseToolOptions {
* , * ,
*/ */
boxSelect?: boolean; boxSelect?: boolean;
/**
* --
*/
boxSelectColor?: string;
/** /**
* (), * (),
*/ */
@ -42,7 +38,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
boxSelect: boolean; boxSelect: boolean;
viewportDrag: boolean; viewportDrag: boolean;
wheelZoom: boolean; wheelZoom: boolean;
boxSelectColor?: string;
selectFilter?: GraphicSelectFilter | undefined; selectFilter?: GraphicSelectFilter | undefined;
constructor() { constructor() {
this.boxSelect = true; this.boxSelect = true;
@ -59,7 +54,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
if (options.wheelZoom != undefined) { if (options.wheelZoom != undefined) {
this.wheelZoom = options.wheelZoom; this.wheelZoom = options.wheelZoom;
} }
this.boxSelectColor = options.boxSelectColor;
this.selectFilter = options.selectFilter; this.selectFilter = options.selectFilter;
} }
} }