QToolBar's QActions text is elided
-
When I make a new toolbar and add buttons into it:
mpActionTriggers = new QAction(QIcon(QStringLiteral(":/icons/tools-wizard.png")), tr("Triggers"), this); mpActionTriggers->setToolTip(tr("Show and edit triggers")); mpMainToolBar->addAction(mpActionTriggers); mpActionTriggers->setObjectName(QStringLiteral("triggers_action")); mpMainToolBar->widgetForAction(mpActionTriggers)->setObjectName(mpActionTriggers->objectName());On Windows only, at launch text is elided:

It's not elided on other platforms like Linux and macOS. Anyone know how to fix?