diff --git a/VERSION b/VERSION index da54d471..ac46e56c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.0-develop25 +1.17.0-develop26 diff --git a/modules/util.py b/modules/util.py index 692e7264..ef9ec678 100644 --- a/modules/util.py +++ b/modules/util.py @@ -1008,7 +1008,7 @@ class Overlay: logger.error(f"Overlay Error: failed to parse overlay blur name: {self.name} defaulting to blur(50)") self.name = "blur(50)" elif self.name.startswith("text"): - if not self.has_coordinates(): + if not self.has_coordinates() and not self.queue: raise Failed(f"Overlay Error: overlay attribute's horizontal_offset and vertical_offset are required when using text") match = re.search("\\(([^)]+)\\)", self.name) if not match: