Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
5.12.0
-
None
-
Windows 10 1809
Qt 5.12.0 MinGW-64bit
Description
When I using a single Dialog's standard button with Universal style, the button can't align correctly. Actually it is beyond the bound of the dialog. Test code and screenshot as follow. And when using Material style, it perform as expected.
import QtQuick 2.7 import QtQuick.Controls 2.5 import QtQuick.Window 2.2 ApplicationWindow { id: window visible: true width: 640 height: 480 title: qsTr("Stack") Dialog { id: dialog title: qsTr("About") modal: true focus: true visible: true width: 400 standardButtons: Dialog.Ok } }
Attachments
Issue Links
- duplicates
-
QTBUG-72372 Button outside dialog if there is only one standardButton defined
- Closed