Forgot to serialize watchers

This commit is contained in:
Kovid Goyal
2025-08-11 21:24:09 +05:30
parent 46e9223c05
commit bb596216ec

View File

@@ -1964,6 +1964,8 @@ class Window:
ans.append(f'--env={k}={v}')
for cs in self.creation_spec.colors:
ans.append(f'--color={cs}')
for wr in self.creation_spec.watchers:
ans.append(f'--watcher={wr}')
for k, v in self.user_vars.items():
ans.append(f'--var={k}={v}')
ans.extend(self.padding.as_launch_args())