Skip to content

Commit

Permalink
Merge pull request #226 from VisActor/fix/startEdit-emit
Browse files Browse the repository at this point in the history
fix: fix issue whis startEdit event not emit
  • Loading branch information
neuqzxy authored Jan 22, 2025
2 parents ca7393d + 1b4cd06 commit ddb0a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vstory-editor/src/selection/base-selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export abstract class BaseSelection implements IEditSelection {
this.inActiveHoverController();
}
}
startEdit(actionInfo: IEditActionInfo, emitEvent: boolean = false) {
startEdit(actionInfo: IEditActionInfo, emitEvent: boolean = true) {
if (this.isEditing) {
return;
}
Expand Down

0 comments on commit ddb0a12

Please sign in to comment.