fix:Arrow tool hover stuck highlight

This commit is contained in:
Mark Tolmacs
2025-09-13 14:44:24 +02:00
parent 737f6e08c1
commit 80706f733b

View File

@@ -6324,6 +6324,10 @@ class App extends React.Component<AppProps, AppState> {
this.setState({
suggestedBinding: hoveredElement,
});
} else if (this.state.suggestedBinding) {
this.setState({
suggestedBinding: null,
});
}
}
}