Add --debug-rendering to QAT
This commit is contained in:
parent
a6b8a7305c
commit
1ea7bbafd8
2 changed files with 8 additions and 0 deletions
|
|
@ -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`)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,6 +109,11 @@ def options_spec() -> str:
|
|||
--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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue