-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New comfy UI update is hidden by this custom node UI #49
Comments
It blocks an essential view of buttons in the new mask editor as well. I have to disable the nodes pack in the manager > custom nodes > mape helpers > DISABLE. And then reenable whenever I need it more (to operate a wf that requires it's nodes) whenever I'm done with the mask editor (that is not often and fleeting as I use inpainting with mask editor quite a bit). So, it is a troublesome UI conflict. |
yes, same issue here, Please fix it !!!! Temporal solution for TamperMonkey or ViolentMonkey script// ==UserScript==
// @name Ocultar mapeRoot
// @namespace Violentmonkey Scripts
// @match http://127.0.0.1:8188/
// @grant none
// @version 1.0
// @author -
// @description 12/11/2024, 8:33:26 AM
// ==/UserScript==
(function() {
'use strict';
var intervalId = setInterval(function() {
var mapeRoot = document.querySelector('.mapeRoot');
if (mapeRoot) {
mapeRoot.style.display = 'none';
clearInterval(intervalId);
}
}, 100);
})(); |
mentioned here: comfyanonymous/ComfyUI#5865
The text was updated successfully, but these errors were encountered: