Also serialize override_title

This commit is contained in:
Kovid Goyal 2025-08-11 21:58:23 +05:30
parent fa4780e240
commit 7f28edfaf2
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -1980,6 +1980,8 @@ def as_launch_command(self) -> list[str]:
ans.append(f'--var={k}={v}')
ans.extend(self.padding.as_launch_args())
ans.extend(self.margin.as_launch_args('margin'))
if self.override_title:
ans.append(f'--title={self.override_title}')
wl = get_window_logo_settings_if_not_default(self.os_window_id, self.tab_id, self.id)
if wl is not None:
logo_path, logo_alpha, logo_pos = wl