Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9
-
None
Description
MessageDialog does not show correct title it shows title in the form "app<project-name>" where <project-name> here is a placeholder for the project name. Below there is code to reproduce the issue:
import QtQuick import QtQuick.Controls import QtQuick.DialogsWindow { width: 640 height: 480 visible: true title: qsTr("Hello World") Button { id: button text: "Click me!" onClicked: msgDialog.open() } MessageDialog { id: msgDialog title: "Hello" text: "World" } }
but the effect is: