Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Support custom hide timeout on node search dialog (#4)
  • Loading branch information
pythongosssss authored Jan 24, 2024
commit 208eb2d006a1b1b80c4fa8f753d23194183ce12c
2 changes: 1 addition & 1 deletion src/litegraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -11494,7 +11494,7 @@ LGraphNode.prototype.executeAction = function(action)
}
timeout_close = setTimeout(function() {
dialog.close();
}, 500);
}, typeof options.hide_on_mouse_leave === "number" ? options.hide_on_mouse_leave : 500);
});
// if filtering, check focus changed to comboboxes and prevent closing
if (options.do_type_filter){
Expand Down