Move to litegraph.
This commit is contained in:
parent
cef30cc6b6
commit
2b2a1474f7
|
@ -8191,7 +8191,7 @@ LGraphNode.prototype.executeAction = function(action)
|
|||
**/
|
||||
LGraphCanvas.prototype.renderInfo = function(ctx, x, y) {
|
||||
x = x || 10;
|
||||
y = y || this.canvas.height - 80;
|
||||
y = y || this.canvas.offsetHeight - 80;
|
||||
|
||||
ctx.save();
|
||||
ctx.translate(x, y);
|
||||
|
|
|
@ -4,18 +4,6 @@ import { api } from "./api.js";
|
|||
import { defaultGraph } from "./defaultGraph.js";
|
||||
import { getPngMetadata, importA1111, getLatentMetadata } from "./pnginfo.js";
|
||||
|
||||
// DPI scaling fix, see https://github.com/comfyanonymous/ComfyUI/pull/845
|
||||
(function() {
|
||||
const originalRenderInfo = LGraphCanvas.prototype.renderInfo
|
||||
LGraphCanvas.prototype.renderInfo = function(ctx, x, y) {
|
||||
// Patch renderInfo() to use canvas.offsetHeight instead of canvas.height as bottom viewpoint bound
|
||||
if (!y) {
|
||||
y = this.canvas.offsetHeight - 80
|
||||
}
|
||||
return originalRenderInfo.call(this, ctx, x, y)
|
||||
}
|
||||
})()
|
||||
|
||||
/**
|
||||
* @typedef {import("types/comfy").ComfyExtension} ComfyExtension
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue