mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-04-06 21:40:23 +08:00
Merge pull request #564 from smartxworks/fix/mask
fix(mask): fix wrong mask position
This commit is contained in:
commit
9e80727540
@ -117,8 +117,9 @@ export class EditorMaskManager {
|
||||
}
|
||||
|
||||
private observeContainerResize() {
|
||||
this.containerResizeObserver = new ResizeObserver(e => {
|
||||
this.maskContainerRect = e[0].contentRect;
|
||||
this.containerResizeObserver = new ResizeObserver(() => {
|
||||
this.maskContainerRect =
|
||||
this.maskContainerRef.current?.getBoundingClientRect() || null;
|
||||
});
|
||||
|
||||
this.containerResizeObserver.observe(this.maskContainerRef.current!);
|
||||
|
Loading…
x
Reference in New Issue
Block a user