diff --git a/build/litegraph.js b/build/litegraph.js
index cc8a5eddb..2c5218789 100644
--- a/build/litegraph.js
+++ b/build/litegraph.js
@@ -1,5 +1,3 @@
-//packer version
-
(function(global){
// *************************************************************
// LiteGraph CLASS *******
@@ -27,7 +25,7 @@
var LiteGraph = global.LiteGraph = {
CANVAS_GRID_SIZE: 10,
-
+
NODE_TITLE_HEIGHT: 20,
NODE_SLOT_HEIGHT: 15,
NODE_WIDGET_HEIGHT: 20,
@@ -2983,7 +2981,7 @@ LGraphNode.prototype.getConnectionPos = function( is_input, slot_number )
return [this.pos[0] + (slot_number + 0.5) * (this.size[0] / (this.inputs.length)), this.pos[1] - LiteGraph.NODE_TITLE_HEIGHT ];
return [this.pos[0] + (slot_number + 0.5) * (this.size[0] / (this.outputs.length)), this.pos[1] + this.size[1] ];
}
-
+
//default
if(is_input)
return [this.pos[0] , this.pos[1] + 10 + slot_number * LiteGraph.NODE_SLOT_HEIGHT + (this.constructor.slot_start_y || 0) ];
@@ -3896,7 +3894,7 @@ LGraphCanvas.prototype.processMouseDown = function(e)
if( is_double_click )
this.showSearchBox( e );
-
+
clicking_canvas_bg = true;
}
@@ -5983,7 +5981,7 @@ LGraphCanvas.prototype.drawNodeWidgets = function( node, posY, ctx, active_widge
}
/**
-* process an event on widgets
+* process an event on widgets
* @method processNodeWidgets
**/
LGraphCanvas.prototype.processNodeWidgets = function( node, pos, event, active_widget )
@@ -6457,7 +6455,7 @@ LGraphCanvas.onShowTitleEditor = function( value, options, e, menu, node )
var dialog = document.createElement("div");
dialog.className = "graphdialog";
- dialog.innerHTML = "Title";
+ dialog.innerHTML = "Title";
var input = dialog.querySelector("input");
if(input)
{
@@ -6517,8 +6515,8 @@ LGraphCanvas.prototype.showSearchBox = function(event)
var input_html = "";
var dialog = document.createElement("div");
- dialog.className = "graphdialog";
- dialog.innerHTML = "Search
";
+ dialog.className = "litegraph litesearchbox";
+ dialog.innerHTML = "Search ";
dialog.close = function()
{
that.search_box = null;
@@ -6654,7 +6652,7 @@ LGraphCanvas.prototype.showSearchBox = function(event)
var help = document.createElement("div");
if(!first) first = i;
help.innerText = i;
- help.className = "help-item";
+ help.className = "litegraph lite-search-item";
help.addEventListener("click", function(e){
select( this.innerText );
});
@@ -6706,10 +6704,10 @@ LGraphCanvas.prototype.showEditPropertyValue = function( node, property, options
var input_html = "";
if(type == "string" || type == "number" || type == "array")
- input_html = "";
+ input_html = "";
else if(type == "enum" && info.values)
{
- input_html = "