AIGODLIKE/AIGODLIKE-ComfyUI-Studio

[建议]可以用原来的列表选择模型

Closed this issue · 5 comments

最新版的会直接进入到模型的生成的页面,不像原来的可以直接以列表的形式进行快速选择,建议回到上一个版本或者提供一个设置供我们选择。
谢谢。
原版的:
image

@BigUncle 最新版 是将原本的下拉选择框调整为了 Shift + 点击 的方式

@BigUncle 最新版 是将原本的下拉选择框调整为了 Shift + 点击 的方式

@KarryCharon 收到。谢谢!

@KarryCharon
改成shift+左键 的方式还是不方便,经常会因为单击切换到模型的页面。能否提供一个设置让我们选择哪个方式点击呢?

I'm changing this line to prevent the model manager from launching when I click on the model list. You can do this by removing the '!' before 'event.shiftKey'.

if (!event.shiftKey && event.type === LiteGraph.pointerevents_method + "down") {

if (event.shiftKey && event.type === LiteGraph.pointerevents_method + "down") {

I'm changing this line to prevent the model manager from launching when I click on the model list. You can do this by removing the '!' before 'event.shiftKey'.

if (!event.shiftKey && event.type === LiteGraph.pointerevents_method + "down") {

if (event.shiftKey && event.type === LiteGraph.pointerevents_method + "down") {

It works.
Thank you very much!!!