Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
5.3.0
-
None
Description
The button text is truncated when setting a menu.
ApplicationWindow { title: qsTr("Hello World") width: 640 height: 480 Button { text: qsTr("Hello World") anchors.centerIn: parent menu: Menu { title: qsTr("myMenu") MenuItem { text: qsTr("Hello1") } } } }