* Fix fixed size window sizing
* Fix device config windows not appearing centered and modal under Wayland
This commit is contained in:
@@ -33,6 +33,12 @@ void StyleOverride::polish(QWidget* widget)
|
||||
{
|
||||
QProxyStyle::polish(widget);
|
||||
/* Disable title bar context help buttons globally as they are unused. */
|
||||
if (widget->isWindow())
|
||||
if (widget->isWindow()) {
|
||||
if (widget->layout() && widget->minimumSize() == widget->maximumSize()) {
|
||||
widget->setFixedSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX));
|
||||
widget->layout()->setSizeConstraint(QLayout::SetFixedSize);
|
||||
widget->setWindowFlag(Qt::MSWindowsFixedSizeDialogHint, true);
|
||||
}
|
||||
widget->setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user