We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit Hash 70690c5
Platform Arch Linux
Summary I've found that when ripple deleting a few clips (possibly involving cross fades or text nodes), olive crashes.
Steps to Reproduce
Here's one scenario that crashes:
Additional Information
I loaded up Olive in a debugger and it turns out the track variable is null on line 390:
olive/app/timeline/timelineundoripple.cpp
Line 390 in 70690c5
Adding something like this fixes the crashes:
Track *track = region.first; if(!track) { qWarning() << "Track is null!"; continue; }
If it's not supposed to be null, then we got other problems but it's a good idea to check for null here in any case.
The text was updated successfully, but these errors were encountered:
I get this same issue. It's definitely related to cross fades.
Sorry, something went wrong.
If you can confirm it's realated to transitions see #1842
Successfully merging a pull request may close this issue.
Commit Hash
70690c5
Platform
Arch Linux
Summary
I've found that when ripple deleting a few clips (possibly involving cross fades or text nodes), olive crashes.
Steps to Reproduce
Here's one scenario that crashes:
Crash Report
Additional Information
I loaded up Olive in a debugger and it turns out the track variable is null on line 390:
olive/app/timeline/timelineundoripple.cpp
Line 390 in 70690c5
Adding something like this fixes the crashes:
If it's not supposed to be null, then we got other problems but it's a good idea to check for null here in any case.
The text was updated successfully, but these errors were encountered: