- 
    Bug 
- 
    Resolution: Duplicate
- 
     Not Evaluated Not Evaluated
- 
    None
- 
    6.2.3
- 
    None
The title does not show up when running QMessageBox.
- create python virtual environment
- pip install PySide6
- Put this in a file "simple.py":
from PySide6.QtWidgets import QApplication, QMessageBox
def info():
 msg = QMessageBox()
 msg.setWindowTitle("Info")
 msg.setText("Some info")
 msg.exec()
if _name_ == "_main_":
 app = QApplication([])
 info()
4. Run "python simple.py"
The title "Info" does not show. Attached is a screenshot of what I see.
This is a simple example, but I am experiencing this same issue when I use QMessageBox.information() and QMessageBox.question().
macbook air apple M1 chip
- duplicates
- 
                    QTBUG-74947 Can't set QMessageBox title on IOS -         
- Open
 
-         
