From 072c5f768f583a5a4d692f9d5755e551a7e9a08c Mon Sep 17 00:00:00 2001 From: Oscar <71343264+0scvr@users.noreply.github.com> Date: Sat, 14 Oct 2023 02:22:34 +0200 Subject: [PATCH] fix: bring block to front when icon clicked (#7590) Closes #7588 Signed-off-by: Oscar <71343264+0scvr@users.noreply.github.com> --- core/gesture.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/gesture.ts b/core/gesture.ts index 03c81c3cc..4549efcba 100644 --- a/core/gesture.ts +++ b/core/gesture.ts @@ -945,7 +945,7 @@ export class Gesture { 'Cannot do an icon click because the start icon is undefined', ); } - + this.bringBlockToFront(); this.startIcon.onClick(); }