Details
Description
Windows that are set to visibility = Window.Fullscreen still have top and bottom bars. Actually, in full screen mode the used screen is smaller than in Automatic mode.
EXAMPLE CODE:
import QtQuick 2.4 import QtQuick.Window 2.2 import QtQuick.Controls 1.3 Window { visible: true id: mainWindow Rectangle { height: parent.height width: parent.width/2 color: "#f0f" MouseArea { anchors.fill: parent onClicked: mainWindow.visibility = Window.AutomaticVisibility } } Rectangle { height: parent.height width: parent.width/2 x : width color: "#ff0" MouseArea { anchors.fill: parent onClicked: mainWindow.visibility = Window.FullScreen } } visibility: Window.FullScreen }
Attachments
Issue Links
- is required for
-
QTBUG-44654 Issues to be fixed before Qt 5.5 RC
- Closed