I'm developing a QML Desktop application using Qt 4.8.1 on Windows. The thing is: I'm having memory leaks when using Script Actions inside infinite animation loops. Even when there is no script actually running. Here's an example inside a MouseArea.
SequentialAnimation
{
id: loadFisicaAnim
loops: Animation.Infinite;
ScriptAction
{
script:
{
}
}
}
This generates a small memory leak. When the animation is stopped the memory seems to be freed. However, letting it run for ever obviously crashes the program.
Is this how Qt manages memory with ScriptActions? Am I doing anything wrong?
Theo