space-nuko / ComfyUI-OpenPose-Editor

165 stars 13 forks source link

The window is too big and I can't resize it #11

Open jojorne opened 8 months ago

jojorne commented 8 months ago

I have to use the browser zoom feature to make the window smaller. How could I solve this issue?

jarcen commented 3 weeks ago

For now workaround is to reduce panel width and height in js/openpose.js:

    constructor(panel, node) {
        this.panel = panel;
        this.node = node;

        const width = 690;
        const height = 690;

Requires complete restart of server, it seems. Just pressing "Refresh" in UI or refreshing page doesn't work.