allow using spaces in face index lists

This commit is contained in:
zappityzap 2024-09-14 15:29:05 -07:00
parent 4493fd7133
commit da963b8796

View File

@ -245,10 +245,10 @@ class FaceSwapScript(scripts.Script):
if self.gender_target is None or self.gender_target == "No": if self.gender_target is None or self.gender_target == "No":
self.gender_target = 0 self.gender_target = 0
self.source_faces_index = [ self.source_faces_index = [
int(x) for x in source_faces_index.strip(",").split(",") if x.isnumeric() int(x) for x in source_faces_index.strip().replace(" ", "").strip(",").split(",") if x.isnumeric()
] ]
self.faces_index = [ self.faces_index = [
int(x) for x in faces_index.strip(",").split(",") if x.isnumeric() int(x) for x in faces_index.strip().replace(" ", "").strip(",").split(",") if x.isnumeric()
] ]
if len(self.source_faces_index) == 0: if len(self.source_faces_index) == 0:
self.source_faces_index = [0] self.source_faces_index = [0]