When I create an application on Mac, I have two types of titles, namely
- On the application title bar
- On Mac main menu
The code below just changes the title on the application menu. But by default, on the Mac main menu, its the name of the project which is displayed. What am I missing? This is not an issue with Windows though.
import QtQuick 2.15
import QtQuick.Window 2.15
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
}
