Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-136350

MessageDialog does not show title correctly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P3: Somewhat important P3: Somewhat important
    • None
    • 6.9
    • Quick: Dialogs
    • None
    • Windows

      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:

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            qt.team.quick.subscriptions Qt Quick and Widgets Team
            piterx Piotr Golacki
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:

                There are no open Gerrit changes