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
Fix using enter to select item (#6)
  • Loading branch information
pythongosssss authored Feb 6, 2024
commit 49a3e31402eb9a0ce91e55c1af4aa4aa35fc9764
2 changes: 1 addition & 1 deletion src/litegraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -11547,7 +11547,7 @@ LGraphNode.prototype.executeAction = function(action)
dialog.close();
} else if (e.keyCode == 13) {
if (selected) {
select(selected.innerHTML);
select(unescape(selected.dataset["type"]));
} else if (first) {
select(first);
} else {
Expand Down