0

我在draw2dTouch中尝试过这样的事情:

this.setSelectable(true);
this.setDraggable(false);
this.setResizeable(true);

但这种行为并非预期的那样。所以请检查这是否是由于新版本引起的库错误。因为我认为在以前的版本中不是那样的。

在此先感谢。请帮助我,我被困在其中。

4

1 回答 1

0

我也有这个问题。

这似乎是一个错误。我添加了这一行“this.mouseDownElement = figure;” 到 SingleSelectionPolicy.js 如下解决问题。

    if (figure !== canvas.getSelection().getPrimary() && figure !== null && figure.isSelectable() === true) {
        this.select(canvas,figure);

        // its a line
        if (figure instanceof draw2d.shape.basic.Line) {
            if (!(figure instanceof draw2d.Connection)) {
                canvas.draggingLineCommand = figure.createCommand(new draw2d.command.CommandType(draw2d.command.CommandType.MOVE));
                if (canvas.draggingLineCommand !== null) {
                    canvas.draggingLine = figure;
                }
            }

            //added to fix Draw2D draggable = false bug
            this.mouseDownElement = figure;
        }
        else if (canDragStart === false) {
            figure.unselect();
        }
    }
于 2013-12-09T12:49:06.033 回答