mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-03 10:50:23 +00:00
Revert "Merge pull request #7931 from space-nuko/img2img-enhance"
This reverts commit4268759370
, reversing changes made to1b63afbedc
.
This commit is contained in:
@@ -132,14 +132,7 @@ function create_tab_index_args(tabId, args){
|
||||
|
||||
function get_img2img_tab_index() {
|
||||
let res = args_to_array(arguments)
|
||||
res.splice(-2) // gradio also sends outputs to the arguments, pop them off
|
||||
res[0] = get_tab_index('mode_img2img')
|
||||
return res
|
||||
}
|
||||
|
||||
function get_img2img_tab_index_for_res_preview() {
|
||||
let res = args_to_array(arguments)
|
||||
res.splice(-1) // gradio also sends outputs to the arguments, pop them off
|
||||
res.splice(-2)
|
||||
res[0] = get_tab_index('mode_img2img')
|
||||
return res
|
||||
}
|
||||
@@ -368,16 +361,3 @@ function selectCheckpoint(name){
|
||||
desiredCheckpointName = name;
|
||||
gradioApp().getElementById('change_checkpoint').click()
|
||||
}
|
||||
|
||||
|
||||
function onCalcResolutionImg2Img(mode, scale, width, height, resize_mode, init_img, sketch, init_img_with_mask, inpaint_color_sketch, init_img_inpaint){
|
||||
i2iScale = gradioApp().getElementById('img2img_scale')
|
||||
i2iWidth = gradioApp().getElementById('img2img_width')
|
||||
i2iHeight = gradioApp().getElementById('img2img_height')
|
||||
|
||||
setInactive(i2iScale, scale == 1)
|
||||
setInactive(i2iWidth, scale > 1)
|
||||
setInactive(i2iHeight, scale > 1)
|
||||
|
||||
return [];
|
||||
}
|
||||
|
Reference in New Issue
Block a user