From c6b22c7cf225ae89f8bdb1316c20004efb06df4b Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 27 Jun 2025 13:29:39 +0100 Subject: [PATCH] use console.highlight() --- obsws_cli/scene.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/obsws_cli/scene.py b/obsws_cli/scene.py index 1870ddd..f52ced6 100644 --- a/obsws_cli/scene.py +++ b/obsws_cli/scene.py @@ -108,7 +108,11 @@ def switch( if preview: ctx.obj['obsws'].set_current_preview_scene(scene_name) - console.out.print(f'Switched to preview scene: [green]{scene_name}[/green]') + console.out.print( + f'Switched to preview scene: {console.highlight(ctx, scene_name)}' + ) else: ctx.obj['obsws'].set_current_program_scene(scene_name) - console.out.print(f'Switched to program scene: [green]{scene_name}[/green]') + console.out.print( + f'Switched to program scene: {console.highlight(ctx, scene_name)}' + )