From 6f7e04d8ebb33a43a3291b8a58a85eb484c2eac0 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Fri, 5 Apr 2024 20:46:28 +0000 Subject: [PATCH] fix: bubbles not being returned to the correct drag layer (#7997) --- core/dragging/bubble_drag_strategy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dragging/bubble_drag_strategy.ts b/core/dragging/bubble_drag_strategy.ts index 97bcfdfebeb..7ffccddc1e5 100644 --- a/core/dragging/bubble_drag_strategy.ts +++ b/core/dragging/bubble_drag_strategy.ts @@ -42,7 +42,7 @@ export class BubbleDragStrategy implements IDragStrategy { this.workspace .getLayerManager() - ?.moveOffDragLayer(this.bubble, layers.BLOCK); + ?.moveOffDragLayer(this.bubble, layers.BUBBLE); this.bubble.setDragging(false); }