QML Text is getting blurred
Unsolved
QML and Qt Quick
-
Hi All,
I am using Qt 5.4.1 with MSVC compiler.
In my application the characters and/or fonts either fade in/out or is displayed in a blurred fashion.
The text in QML is defined as below
Text { id: ourNoDeviceFoundText anchors.leftMargin: 12 font.bold: true color: "#333" text: qsTr("Searching...") }
I thought the problem might be with qsTr and removed it as placed as follows.
Text { id: ourNoDeviceFoundText anchors.leftMargin: 12 font.bold: true color: "#333" text: "Searching..." }
Problem do persists.
What would be the problem ?
Thanks in advance.-Basha.
-