Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
5.3.2
-
None
-
Ubuntu 14.10 64 bit, Qt 5.3.2, 5.4.0 RC
Description
On Ubuntu 14.04 and 14.10 I get Menu elements displayed in white most of the time. Sometimes they are rendered correctly.
Same happens with Menu elements in context menus as well as ComboBox.
Example code
import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Window 2.2 ApplicationWindow { title: qsTr("Hello World") width: 400 height: 300 menuBar: MenuBar { Menu { title: qsTr("File") MenuItem { text: qsTr("&Open") onTriggered: console.log("Open action triggered"); } MenuItem { text: qsTr("Exit") onTriggered: Qt.quit(); } } } Button { text: qsTr("Hello World") anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter } }
Attachments
Issue Links
- relates to
-
QTBUG-41181 Popup menu does not show text
- Closed