Is there a setting for keeping the application name from appearing in dialog titles?
-
Using Linux Ubuntu 24.04 with GNOME on Xorg display manager:
The window title almost always gets cut off, anyway ... I am using the static QMessageBox functions (yes, I know they are deprecated), but whatever I set as the
titlehas the application name and version appended to the string, which is way too long. This is tolerable in the application's main window, but certainly not in every dialog.How can I enforce that only the title string I set is displayed?
-
Did you set
QGuiApplication::setApplicationDisplayName? Because that is what it does on Linux and Windows.@IgKh Yes ... that was it! Thank you!
-
R Robert Hairgrove has marked this topic as solved