@lvce-editor/editor-worker 14.0.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editorWorkerMain.js +1 -4
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -5330,10 +5330,7 @@ const handleTripleClick = (editor, modifier, x, y) => {
|
|
|
5330
5330
|
object(editor);
|
|
5331
5331
|
number(x);
|
|
5332
5332
|
number(y);
|
|
5333
|
-
return
|
|
5334
|
-
newState: selectLine(editor),
|
|
5335
|
-
commands: []
|
|
5336
|
-
};
|
|
5333
|
+
return selectLine(editor);
|
|
5337
5334
|
};
|
|
5338
5335
|
|
|
5339
5336
|
const handleMouseDown = (state, modifier, x, y, detail) => {
|