Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
5.12.0, 5.12.1
-
None
Description
import QtQuick 2.9 Rectangle { visible: true width: 640 height: 1000 color: "blue" Rectangle { id: testRect y: 4 width: parent.width height: 10 } NumberAnimation { id: testAni target: testRect property: "height" running: true to: 1000 from: 0 loops: -1 duration: 10000 } }
After the first refresh by changing the color to something else, the animations runs faster then the 10 seconds which it should, every following refresh does not change the speed anymore.
Attachments
Issue Links
- duplicates
-
QTBUG-59660 animations run faster if the dpi setting is changed for a running application
- Closed