Exciting new Alt/h help key provided by sge (Georgy) with many thanks!
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / canvas.C
index a1f458541cea8d8080cf4bad17b9470dfc394be9..0779224e6f7057b4d8840ba7868333e0ef56aef6 100644 (file)
@@ -685,7 +685,7 @@ int Canvas::keypress_event(BC_WindowBase *caller)
                set_fullscreen(0, 1);
                break;
        default:
-               return 0;
+               return caller->context_help_check_and_show();
        }
        return 1;
 }
@@ -733,6 +733,7 @@ void Canvas::update_refresh(VideoDevice *device, VFrame *output_frame)
        }
        else
                refresh_frame->transfer_from(output_frame, -1);
+       draw_scope(refresh_frame, 1);
 }
 
 void Canvas::process_scope(VideoDevice *video, VFrame *frame)
@@ -746,7 +747,7 @@ void Canvas::process_scope(VideoDevice *video, VFrame *frame)
                frame = refresh_frame;
        }
        if( frame )
-               draw_scope(frame);
+               draw_scope(frame, 0);
 }
 
 void Canvas::clear(int flash)