fix: Turn into inside bind when angle locked (#10479)

Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
Márk Tolmács
2025-12-09 19:36:28 +01:00
committed by GitHub
parent 8d18078f5c
commit bf4c65f483
4 changed files with 36 additions and 31 deletions
+6 -1
View File
@@ -8619,7 +8619,12 @@ class App extends React.Component<AppProps, AppState> {
]),
this.scene,
this.state,
{ newArrow: true, altKey: event.altKey, initialBinding: true },
{
newArrow: true,
altKey: event.altKey,
initialBinding: true,
angleLocked: shouldRotateWithDiscreteAngle(event.nativeEvent),
},
);
}