[Solved]QtDesktop Components crash when mouse move
-
I’m trying to use Qt 5 with QtDesktop components and when I build and run application,once mouse move on any component , application crashing with this message:
@
QOpenGLShader::link: "(35,18): warning X3206: implicit truncation of vector type
"
QPainter::begin: A paint device can only be painted by one painter at a time.
QPainter::pen: Painter not active
QPainter::setPen: Painter not active
QPainter::setPen: Painter not active@It happens only mouse move on any component, qml like this:
@
import QtQuick 2.0
import QtDesktop 1.0Rectangle { width: 360 height: 360 Button { text: "testButton" } }
@
I test it on kubuntu、mac and Windows7,that it only appeared on Windows。
everything will be ok before I move cursor on button. anybody have some ideas what is it and how i can fix this? -
This was actually fixed yesterday. See https://codereview.qt-project.org/#change,45422 for details.
-
[quote author="Jens" date="1359010366"]This was actually fixed yesterday. See https://codereview.qt-project.org/#change,45422 for details.
[/quote]thanks very much,I'll try it immediatly。