From c003591a821c37c624cf7a8b2805c4cdff894e67 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 11 Aug 2023 00:59:32 +0200 Subject: [PATCH] fix(bendpoints): add interaction events dependency --- lib/features/bendpoints/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/features/bendpoints/index.js b/lib/features/bendpoints/index.js index c43a52492..fb04a3dd0 100644 --- a/lib/features/bendpoints/index.js +++ b/lib/features/bendpoints/index.js @@ -1,5 +1,6 @@ import DraggingModule from '../dragging'; import RulesModule from '../rules'; +import InteractionEventsModule from '../interaction-events'; import Bendpoints from './Bendpoints'; import BendpointMove from './BendpointMove'; @@ -14,6 +15,7 @@ import BendpointSnapping from './BendpointSnapping'; export default { __depends__: [ DraggingModule, + InteractionEventsModule, RulesModule ], __init__: [ 'bendpoints', 'bendpointSnapping', 'bendpointMovePreview' ],