Possible hack/idea for automatically workaround clearing wrong keyframes?
So, I looked into mainmenu.C and there I can see (searching for ClearKeyframes) int ClearKeyframes::handle_event() { if( mwindow->session->current_operation == NO_OPERATION ) mwindow->clear_automation(); return 1; } and for "keyframes_follow_edits" I see keyframes_follow_edits->set_checked(mwindow->edl->session->autos_follow_edits); so, may be save this state into tmp variable, test this mwindow->edl->session->autos_follow_edits , and if set to 1 - clear temporarily before calling mwindow->clear_automation(); and restore from tmp variable afterwards?
Andrew, Let's see what GG says. This is his highest priority for today and then hopefully on to the last 3 problems you found the day before. On Tue, Sep 1, 2020 at 10:16 AM Andrew Randrianasulu via Cin < [email protected]> wrote:
So, I looked into mainmenu.C and there I can see (searching for ClearKeyframes)
int ClearKeyframes::handle_event() { if( mwindow->session->current_operation == NO_OPERATION ) mwindow->clear_automation(); return 1; }
and for "keyframes_follow_edits" I see
keyframes_follow_edits->set_checked(mwindow->edl->session->autos_follow_edits);
so, may be save this state into tmp variable, test this mwindow->edl->session->autos_follow_edits , and if set to 1 - clear temporarily before calling mwindow->clear_automation(); and restore from tmp variable afterwards?
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin
Andrew/IgorBeg: We have added "id-s" to keyframes and labels and fixed this problem. Previously, id-s had been added to Plugins (several weeks ago) to resolve problems due to all of the extra added features that have accrued over time. On Tue, Sep 1, 2020 at 10:16 AM Andrew Randrianasulu via Cin < [email protected]> wrote:
So, I looked into mainmenu.C and there I can see (searching for ClearKeyframes)
int ClearKeyframes::handle_event() { if( mwindow->session->current_operation == NO_OPERATION ) mwindow->clear_automation(); return 1; }
and for "keyframes_follow_edits" I see
keyframes_follow_edits->set_checked(mwindow->edl->session->autos_follow_edits);
so, may be save this state into tmp variable, test this mwindow->edl->session->autos_follow_edits , and if set to 1 - clear temporarily before calling mwindow->clear_automation(); and restore from tmp variable afterwards?
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin
participants (2)
-
Andrew Randrianasulu -
Phyllis Smith