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`)
}