diff --git a/.gitignore b/.gitignore index e2382c22e..c1d202df2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ npm-debug.log temp/ temp/* -# Editor +# Editors /.vscode/* !/.vscode/extensions.json +*.bak +.project \ No newline at end of file diff --git a/editor/js/defaults.js b/editor/js/defaults.js index 3709e645a..00bea24e3 100644 --- a/editor/js/defaults.js +++ b/editor/js/defaults.js @@ -28,4 +28,4 @@ LiteGraph.do_add_triggers_slots = true; // [true!] will create and connect event LiteGraph.allow_multi_output_for_events = false; // [false!] being events; it is strongly reccomended to use them sequentually; one by one LiteGraph.middle_click_slot_add_default_node = true; //[true!] allows to create and connect a ndoe clicking with the third button (wheel) LiteGraph.release_link_on_empty_shows_menu = true; //[true!] dragging a link to empty space will open a menu, add from list, search or defaults -LiteGraph.pointerevents_method = "pointer"; // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now) \ No newline at end of file +LiteGraph.pointerevents_method = "mouse"; // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now) \ No newline at end of file diff --git a/src/litegraph.js b/src/litegraph.js index f372fb65c..09fd1632f 100644 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -136,7 +136,7 @@ release_link_on_empty_shows_menu: false, //[true!] dragging a link to empty space will open a menu, add from list, search or defaults - pointerevents_method: "pointer", // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now) + pointerevents_method: "mouse", // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now) // TODO implement pointercancel, gotpointercapture, lostpointercapture, (pointerover, pointerout if necessary) /**