Add --debug-rendering to QAT

This commit is contained in:
Kovid Goyal
2025-05-01 06:56:34 +05:30
parent a6b8a7305c
commit 1ea7bbafd8
2 changed files with 8 additions and 0 deletions

View File

@@ -74,6 +74,9 @@ func main(cmd *cli.Command, opts *Options, args []string) (rc int, err error) {
if conf.Hide_on_focus_loss {
argv = append(argv, `--hide-on-focus-loss`)
}
if opts.DebugRendering {
argv = append(argv, `--debug-rendering`)
}
if opts.Detach {
argv = append(argv, `--detach`)
}

View File

@@ -109,6 +109,11 @@ Path to a log file to store STDOUT/STDERR when using :option:`--detach`
--instance-group
default=quick-access
The unique name of this quick access terminal Use a different name if you want multiple such terminals.
--debug-rendering
type=bool-set
For debugging interactions with the compositor/window manager.
'''
def main(args: list[str]) -> None: