implement removal

This commit is contained in:
DepFA 2022-10-08 05:46:42 +01:00 committed by AUTOMATIC1111
parent 83749bfc72
commit 21679435e5

View file

@ -79,7 +79,13 @@ contextMenuInit = function(){
}
function removeContextMenuOption(uid){
menuSpecs.forEach(function(v,k) {
let index = -1
v.forEach(function(e,ei){if(e['id']==uid){index=ei}})
if(index>=0){
v.splice(index, 1);
}
})
}
function addContextMenuEventListener(){
@ -150,6 +156,7 @@ cancelGenerateForever = function(){
appendContextMenuOption('#txt2img_interrupt','Cancel generate forever',cancelGenerateForever)
appendContextMenuOption('#txt2img_generate', 'Cancel generate forever',cancelGenerateForever)
appendContextMenuOption('#roll','Roll three',
function(){
let rollbutton = gradioApp().querySelector('#roll');