File size: 310 Bytes
c336648 |
1 2 3 4 5 6 7 8 9 10 11 |
function setsdxlres(x, y) {
var width = gradioApp().querySelector("#txt2img_width input[type=number]");
var height = gradioApp().querySelector("#txt2img_height input[type=number]");
width.value = x;
height.value = y;
updateInput(width);
updateInput(height);
return [];
} |