Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

Issue with particle system and hanging window

$
0
0
With the downloaded Qt5.0.2 – msvc2012_64 on win7 when I try to move the window of the following qmlscene, the window keeps hanging at its current position and doesn’t react anymore until changing the focus with alt+tab. import QtQuick 2.0 import QtQuick.Particles 2.0   Rectangle {     width: 224     height: 288     color: "black"     id: background       ParticleSystem {         anchors.fill: parent           ImageParticle {             source: "star.png"             colorVariation: 1.0         }           Emitter {             width: background.width;             height: 1             size: 8             sizeVariation: 5             anchors.top: parent.top             lifeSpan: 6000             velocity: AngleDirection {                 angle: 90                 angleVariation: 1                 magnitude: 150                 magnitudeVariation: 100             }         }     } } Without the particle system I can move the window around. I already recognized this behavior in 5.0 but I thought this would be fixed in an upcoming version.

Viewing all articles
Browse latest Browse all 4972

Trending Articles