mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-04-04 22:09:52 +02:00
commit
16fcb4ed79
@ -174,6 +174,11 @@ const TASK_MAPPING = {
|
|||||||
name: "Use Face Correction",
|
name: "Use Face Correction",
|
||||||
setUI: (use_face_correction) => {
|
setUI: (use_face_correction) => {
|
||||||
const oldVal = gfpganModelField.value
|
const oldVal = gfpganModelField.value
|
||||||
|
console.log("use face correction", use_face_correction)
|
||||||
|
if (use_face_correction == null || use_face_correction == "None") {
|
||||||
|
gfpganModelField.disabled = true
|
||||||
|
useFaceCorrectionField.checked = false
|
||||||
|
} else {
|
||||||
gfpganModelField.value = getModelPath(use_face_correction, [".pth"])
|
gfpganModelField.value = getModelPath(use_face_correction, [".pth"])
|
||||||
if (gfpganModelField.value) {
|
if (gfpganModelField.value) {
|
||||||
// Is a valid value for the field.
|
// Is a valid value for the field.
|
||||||
@ -185,6 +190,7 @@ const TASK_MAPPING = {
|
|||||||
gfpganModelField.value = oldVal
|
gfpganModelField.value = oldVal
|
||||||
useFaceCorrectionField.checked = false
|
useFaceCorrectionField.checked = false
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//useFaceCorrectionField.checked = parseBoolean(use_face_correction)
|
//useFaceCorrectionField.checked = parseBoolean(use_face_correction)
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user