fix problem of using opengl transitions with Motion51 when in OpenGL mode
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / recordscopes.C
index 55f5a0c3a01ac6fc7ea3a19166293505a6320216..598464c6ae6c981bab208a2213cf32c0e081e839 100644 (file)
@@ -121,6 +121,7 @@ void RecordScopeGUI::create_objects()
        use_vect_gain = mwindow->session->use_vect_gain;
        use_smooth = mwindow->session->use_smooth;
        use_refresh = -1;
+       use_release = 0;
        use_graticule = mwindow->session->use_graticule;
        ScopeGUI::create_objects();
 }
@@ -137,6 +138,7 @@ void RecordScopeGUI::toggle_event()
        mwindow->session->use_vect_gain = use_vect_gain;
        mwindow->session->use_smooth = use_smooth;
        mwindow->session->use_refresh = 0;
+       mwindow->session->use_release = 0;
        mwindow->session->use_graticule = use_graticule;
 }
 
@@ -169,6 +171,8 @@ ScopeEnable::ScopeEnable(MWindow *mwindow, RecordMonitor *record_monitor, int x,
        this->record_monitor = record_monitor;
        this->mwindow = mwindow;
        set_tooltip(_("View scope"));
+// *** CONTEXT_HELP ***
+       context_help_set_keyword("Videoscope");
 }
 
 ScopeEnable::~ScopeEnable()