Fix litegraph

This commit is contained in:
space-nuko
2023-05-18 02:34:43 -05:00
parent a25a78305b
commit 709cd3d5f8
3 changed files with 2 additions and 3 deletions

View File

@@ -9,7 +9,6 @@ export function configureLitegraph(isMobile: boolean = false) {
// Must be enabled, otherwise subgraphs won't work (because of non-unique node/link IDs) // Must be enabled, otherwise subgraphs won't work (because of non-unique node/link IDs)
LiteGraph.use_uuids = true; LiteGraph.use_uuids = true;
LiteGraph.search_filter_enabled = true; LiteGraph.search_filter_enabled = true;
LiteGraph.release_link_on_empty_shows_menu = true; LiteGraph.release_link_on_empty_shows_menu = true;
LiteGraph.alt_drag_do_clone_nodes = true; LiteGraph.alt_drag_do_clone_nodes = true;

View File

@@ -172,7 +172,7 @@
}); });
setTimeout(function () { setTimeout(function () {
kl.klApp?.out("yo"); kl?.klApp?.out("yo");
}, 1000); }, 1000);
} }