aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze/__main__.py')
-rw-r--r--src/argaze/__main__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/argaze/__main__.py b/src/argaze/__main__.py
index 2647198..cb8bd01 100644
--- a/src/argaze/__main__.py
+++ b/src/argaze/__main__.py
@@ -154,8 +154,8 @@ def load_context(args):
try:
- # Display context
- display(context.name, context.image(draw_pipeline=draw_pipeline), 0.75, draw_help=draw_help)
+ # Display context if the pipeline is available
+ display(context.name, context.image(wait = False, draw_pipeline=draw_pipeline), 0.75, draw_help=draw_help)
except SharedObjectBusy:
@@ -168,8 +168,8 @@ def load_context(args):
try:
- # Display scene's frame
- display(scene_frame.name, scene_frame.image(), 0.5)
+ # Display scene's frame if available
+ display(scene_frame.name, scene_frame.image(wait = False), 0.5)
except SharedObjectBusy: