Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15.12
-
None
Description
The application size extends past the screen when the application is in fullscreen.
Most likely the difference is the cutout areas (camera, etc). If that is correct, it should be decided if the fullscreen should overlap cutout or if the cutout space should be removed from the application size.
Reproducible with Gallery example and:
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") visibility: "FullScreen" Rectangle { anchors.fill: parent color: "yellow" Text { anchors.bottom: parent.bottom color: "black" font.pixelSize: 55 text: "TEST TEXT" } } }
Possibly reproducible with Qt6 or dev.
Attachments
Issue Links
- duplicates
-
QTBUG-96877 Qt6 won't render into cutout area (regression)
- Closed