提交 16ce4570 编写于 作者: B Boris Sekachev 提交者: Nikita Manovich

Bug has been fixed: impossible to close points after editing (#98)

上级 e7ffa876
...@@ -2862,12 +2862,18 @@ class PolyShapeView extends ShapeView { ...@@ -2862,12 +2862,18 @@ class PolyShapeView extends ShapeView {
this._hideShapeText(); this._hideShapeText();
} }
this._uis.shape.addClass('hidden'); this._uis.shape.addClass('hidden');
if (this._uis.points) {
this._uis.points.addClass('hidden');
}
// Run edit mode // Run edit mode
PolyShapeView.editor.edit(this._controller.type.split('_')[1], PolyShapeView.editor.edit(this._controller.type.split('_')[1],
this._uis.shape.attr('points'), this._color, index, e, this._uis.shape.attr('points'), this._color, index, e,
(points) => { (points) => {
this._uis.shape.removeClass('hidden'); this._uis.shape.removeClass('hidden');
if (this._uis.points) {
this._uis.points.removeClass('hidden');
}
if (points) { if (points) {
this._uis.shape.attr('points', points); this._uis.shape.attr('points', points);
this._controller.updatePosition(window.cvat.player.frames.current, this._buildPosition()); this._controller.updatePosition(window.cvat.player.frames.current, this._buildPosition());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册