Skip to content

Commit

Permalink
Follow to updated knowledge
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Sep 7, 2023
1 parent 48dd620 commit ec88d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webextensions/sidebar/drag-and-drop.js
Original file line number Diff line number Diff line change
Expand Up @@ -1090,8 +1090,8 @@ function onDragOver(event) {
const sessionId = dragData && dragData.sessionId || '';
if (sessionId &&
!mLivingDragSessionIds.has(sessionId)) {
// On Linux, zombie drag session can produce dragover event after it is already dropped.
// As a workaround TST ignores such dragover events based on its custom session ID.
// On Linux, unexpected dragover events can be fired on various triggers unrelated to drag and drop.
// As a workaround TST ignores such dragover events based on the custom session ID.
// See also: https://github.com/piroor/treestyletab/issues/3374
log(`onDragOver: ignore already finished drag session ${sessionId}`);
return;
Expand Down

0 comments on commit ec88d90

Please sign in to comment.