allows touch drag

This commit is contained in:
ltdrdata 2023-05-16 22:55:00 +09:00
parent 13d94caf49
commit 7ada9e7d85
1 changed files with 3 additions and 1 deletions

View File

@ -902,7 +902,9 @@ export class ComfyApp {
await this.#loadExtensions();
// Create and mount the LiteGraph in the DOM
const canvasEl = (this.canvasEl = Object.assign(document.createElement("canvas"), { id: "graph-canvas" }));
const mainCanvas = document.createElement("canvas")
mainCanvas.style.touchAction = "none"
const canvasEl = (this.canvasEl = Object.assign(mainCanvas, { id: "graph-canvas" }));
canvasEl.tabIndex = "1";
document.body.prepend(canvasEl);