This commit is contained in:
tamat
2021-08-17 10:29:21 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -182,6 +182,7 @@ You can write any feedback to javi.agenjo@gmail.com
- NateScarlet
- coderofsalvation
- ilyabesk
- gausszhou

View File

@@ -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;

View File

@@ -567,7 +567,7 @@
} //glMatrix
else
else if (LiteGraph.debug)
console.warn("No glmatrix found, some Math3D nodes may not work");
})(this);