We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a15784 + 2e17c6a commit b2e0d17Copy full SHA for b2e0d17
Nodexr/Shared/Nodes/NodeView.razor
@@ -39,6 +39,7 @@
39
{
40
<div class="node-content"
41
@onclick:stopPropagation
42
+ @onkeydown:stopPropagation
43
@onmousedown:stopPropagation>
44
@foreach (INodeInput nodeInput in Data.NodeInputs)
45
@@ -85,17 +86,6 @@
85
86
await JSRuntime.InvokeVoidAsync("NodeDragHandler.startNodeDrag");
87
}
88
- [JSInvokable]
89
- public void UpdateNodePosition(double x, double y)
90
- {
91
- Data.Pos = new Vector2(x, y);
92
- StateHasChanged();
93
- foreach(var input in Data.GetAllInputs().OfType<InputProcedural>())
94
95
- input.Refresh();
96
- }
97
98
-
99
void ShowModal()
100
101
var modalParameters = new ModalParameters();
0 commit comments