fix selection not getting cleared after element deletion

This commit is contained in:
Maze Winther 2026-02-09 16:38:17 +01:00
parent fe10cee3eb
commit 33a8705f0d
1 changed files with 1 additions and 0 deletions

View File

@ -199,6 +199,7 @@ export function useEditorActions() {
editor.timeline.deleteElements({
elements: selectedElements,
});
editor.selection.clearSelection();
},
undefined,
);