mirror of
https://github.com/vladmandic/automatic
synced 2026-09-09 14:28:43 +02:00
base and refiner mix and match
This commit is contained in:
+3
-4
@@ -3,9 +3,8 @@ function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x,
|
||||
const hrUpscaleBy = gradioApp().getElementById('txt2img_hr_scale');
|
||||
const hrResizeX = gradioApp().getElementById('txt2img_hr_resize_x');
|
||||
const hrResizeY = gradioApp().getElementById('txt2img_hr_resize_y');
|
||||
gradioApp().getElementById('txt2img_hires_fix_row3').style.display = opts.use_old_hires_fix_width_height ? 'none' : '';
|
||||
setInactive(hrUpscaleBy, opts.use_old_hires_fix_width_height || hr_resize_x > 0 || hr_resize_y > 0);
|
||||
setInactive(hrResizeX, opts.use_old_hires_fix_width_height || hr_resize_x === 0);
|
||||
setInactive(hrResizeY, opts.use_old_hires_fix_width_height || hr_resize_y === 0);
|
||||
setInactive(hrUpscaleBy, hr_resize_x > 0 || hr_resize_y > 0);
|
||||
setInactive(hrResizeX, hr_resize_x === 0);
|
||||
setInactive(hrResizeY, hr_resize_y === 0);
|
||||
return [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler];
|
||||
}
|
||||
|
||||
@@ -45,7 +45,6 @@ function markIfModified(setting_name, value) {
|
||||
const changed_value = previous_value !== current_value;
|
||||
if (changed_value) elem.title = `click to revert to previous value: ${previous_value}`;
|
||||
const is_stored = opts_metadata[setting_name].is_stored;
|
||||
if (is_stored) console.log('A', opts_metadata[setting_name]);
|
||||
if (is_stored) elem.title = 'custom value';
|
||||
elem.disabled = !changed_value && !is_stored;
|
||||
elem.classList.toggle('changed', changed_value);
|
||||
|
||||
Reference in New Issue
Block a user