fix: header draws with old size after resize + mousemove

Fix: clear the cached "entry" with old size after a drag has ended.

Signed-off-by: Dennis Francis <dennis.francis@collabora.com>
Change-Id: I73840e380dc808c5805588947d774984def288d0
This commit is contained in:
Dennis Francis 2021-04-22 13:43:37 +05:30 committed by Dennis Francis
parent 46781aa313
commit 991a5a14c7
2 changed files with 2 additions and 0 deletions

View file

@ -242,6 +242,7 @@ L.Control.ColumnHeader = L.Control.Header.extend({
};
this._map.sendUnoCommand('.uno:ColumnWidth', command);
this._mouseOverEntry = null;
}
},

View file

@ -238,6 +238,7 @@ L.Control.RowHeader = L.Control.Header.extend({
this._map.sendUnoCommand('.uno:RowHeight', command);
//this.containerObject.requestReDraw();
this._mouseOverEntry = null;
}
},