mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-01 19:20:10 +00:00
Merge branch 'master' of https://github.com/jagenjo/litegraph.js
This commit is contained in:
@@ -182,6 +182,7 @@ You can write any feedback to javi.agenjo@gmail.com
|
||||
- NateScarlet
|
||||
- coderofsalvation
|
||||
- ilyabesk
|
||||
- gausszhou
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -418,7 +418,7 @@
|
||||
}
|
||||
|
||||
if (this.auto_sort_node_types) {
|
||||
r.sort((a, b) => a.title.localeCompare(b.title));
|
||||
r.sort(function(a,b){return a.title.localeCompare(b.title)});
|
||||
}
|
||||
|
||||
return r;
|
||||
@@ -7887,7 +7887,7 @@ LGraphNode.prototype.executeAction = function(action)
|
||||
var title_mode = node.constructor.title_mode;
|
||||
|
||||
var render_title = true;
|
||||
if (title_mode == LiteGraph.TRANSPARENT_TITLE) {
|
||||
if (title_mode == LiteGraph.TRANSPARENT_TITLE || title_mode == LiteGraph.NO_TITLE) {
|
||||
render_title = false;
|
||||
} else if (title_mode == LiteGraph.AUTOHIDE_TITLE && mouse_over) {
|
||||
render_title = true;
|
||||
|
||||
@@ -567,7 +567,7 @@
|
||||
|
||||
|
||||
} //glMatrix
|
||||
else
|
||||
else if (LiteGraph.debug)
|
||||
console.warn("No glmatrix found, some Math3D nodes may not work");
|
||||
|
||||
})(this);
|
||||
|
||||
Reference in New Issue
Block a user