[SSE] Fix bug 49203

This commit is contained in:
Julia.Svinareva
2023-11-22 17:20:29 +03:00
parent 9778cfa82d
commit 22b08215aa
2 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,7 @@ define([
me.onCellsRange(status);
},
'tabs:dragend': _.bind(me.onDragEndMouseUp, me),
'pivot:dragend': _.bind(me.onDragEndMouseUp, me),
'protect:wslock': _.bind(me.onChangeProtectSheet, me)
});
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));

View File

@ -208,6 +208,7 @@ define([
onDragEnd: function() {
this._dragEl && this._dragEl.remove();
this._dragEl = null;
Common.NotificationCenter.trigger('pivot:dragend', this);
},
onFieldsDragStart: function (item, index, event) {