Skip to content

Commit

Permalink
remove duplicate event
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed Mar 13, 2024
1 parent bf2bf81 commit 44650a9
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/ScrollBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,16 +370,6 @@ export class ScrollBox extends Container
this.stopRenderHiddenItems();
});

this.on('pointerover', () =>
{
this.isOver = true;
});

this.on('pointerout', () =>
{
this.isOver = false;
});

this.on('globalpointermove', (e: FederatedPointerEvent) =>
{
if (!this.isDragging) return;
Expand Down

0 comments on commit 44650a9

Please sign in to comment.