()
| 1183 | |
| 1184 | /* Called when something visually changed (not the graph!) */ |
| 1185 | change(): void { |
| 1186 | if (LiteGraph.debug) { |
| 1187 | console.log("Graph changed") |
| 1188 | } |
| 1189 | this.canvasAction(c => c.setDirty(true, true)) |
| 1190 | this.on_change?.(this) |
| 1191 | } |
| 1192 | |
| 1193 | setDirtyCanvas(fg: boolean, bg?: boolean): void { |
| 1194 | this.canvasAction(c => c.setDirty(fg, bg)) |
no test coverage detected