Skip to content
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

Open
moreAImore opened this issue Dec 2, 2024 · 4 comments
Open

New comfy UI update is hidden by this custom node UI #49

moreAImore opened this issue Dec 2, 2024 · 4 comments

Comments

@moreAImore
Copy link

mentioned here: comfyanonymous/ComfyUI#5865

@huwhitememes
Copy link

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.

@Milor123
Copy link

Milor123 commented Dec 11, 2024

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);
})();

@nux1111
Copy link

nux1111 commented Dec 11, 2024

If you click on the top right, you can hide mape's ui
CleanShot 2024-12-11 at 08 27 42
CleanShot 2024-12-11 at 08 26 58

@Milor123
Copy link

If you click on the top right, you can hide mape's ui CleanShot 2024-12-11 at 08 27 42 CleanShot 2024-12-11 at 08 26 58

Ohh its true, it also works !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants