Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
5.4.0
-
Windows 7 x64
Qt 5.4.0
Description
Consider the following simple example:
import QtQuick 2.0 Rectangle { id: root width: 800 height: 600 color: "black" focus: true Rectangle { id: rect width: 150 height: parent.height color: "seagreen" visible: animation.running NumberAnimation on x { id: animation from: -rect.width to: root.width loops: Animation.Infinite duration: 4000 running: false } } Keys.onSpacePressed: animation.running = true }
The speed of green bar is incosistent when switching between different versions of Qt on Windows 7 (x64). The speed is equal and as expected for versions 5.1.1, 5.2.1, and 5.3. Alas, on 5.4 animation is running approximately 2 times faster than desired.
No such behaviour for Mac OS X 10.10, and Ubuntu 12.02 (verified for the same list of Qt versions).
Attachments
Issue Links
- is duplicated by
-
QTBUG-67249 QML Timer with Animation still running too fast on Windows
- Closed
- relates to
-
QTBUG-70297 Qml animations are too fast in Release builds (ok in Debug)
- Closed
-
QTBUG-45959 QtQuick Animation timing too fast on Linux nvidia optimus systems
- Closed