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.
1 parent 65587d6 commit d704ed1Copy full SHA for d704ed1
Assets/com.alelievr.NodeGraphProcessor/Editor/Views/BaseGraphView.cs
@@ -696,6 +696,10 @@ public void Initialize(BaseGraph graph)
696
697
// When pressing ctrl-s, we save the graph
698
EditorSceneManager.sceneSaved += _ => SaveGraphToDisk();
699
+ RegisterCallback<KeyDownEvent>(e => {
700
+ if (e.keyCode == KeyCode.S && e.actionKey)
701
+ SaveGraphToDisk();
702
+ });
703
704
ClearGraphElements();
705
0 commit comments