With the recent refactoring in git master there is a nasty bug that causes Kdenlive to crash immediately after trying to move a transition in the timeline. The crash is in TransitionHandler::moveTransition(). Reproducible: Always Steps to Reproduce: 1. Start new project. 2. Add a (color) clip to your project and timeline. 3. Add a transition to the clip in the timeline. 4. Drag (move) transition in timeline using the mouse. Actual Results: Kdenlive crashes in TransitionHandler::moveTransition() in reaction to MoveManager::mouseRelease(). Expected Results: Transition moves correctly to new position.
By the way: moving a group containing transitions does not crash Kdenlive. (phew!)
Being a git master tester surely drives creative thinking: I worked around by copying the transition, then marking both transitions so I could move them now without crash. Finally, I deleted the second transition that isn't needed anymore...
Git commit 49673eec7e62cc02312501c344e2105b6916c76c by Jean-Baptiste Mardelle. Committed on 14/06/2016 at 20:01. Pushed by mardelle into branch 'master'. Fix crash on transition move M +11 -7 src/timeline/customtrackview.cpp M +1 -0 src/timeline/customtrackview.h M +1 -0 src/timeline/timeline.cpp http://commits.kde.org/kdenlive/49673eec7e62cc02312501c344e2105b6916c76c
Great! Crashes are fixed, thank you very much!