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.0
Rectangle {
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?
↧