try harder to maximize windows

This commit is contained in:
Marco Martin 2014-12-09 19:07:50 +01:00
parent 29f0385734
commit 57d0ef8469
2 changed files with 10 additions and 3 deletions

View file

@ -80,8 +80,11 @@ Rectangle {
Rectangle {
id: windowsLayerBackground
anchors.fill: parent
anchors.topMargin: topBarHeight
anchors {
fill: parent
topMargin: topBarHeight
bottomMargin: bottomBarHeight
}
color: Qt.rgba(0, 0, 0, 0.9)
Flickable {
@ -134,7 +137,7 @@ Rectangle {
anchors.right: parent.right
anchors.bottom: parent.bottom
height: compositorRoot.state == "homeScreen" ? 0 : bottomBarHeight
color: Qt.rgba(0, 0, 0, windowsLayout.scale)
color: Qt.rgba(0, 0, 0, 0.9 + 0.1*windowsLayout.scale)
Behavior on height {
NumberAnimation {

View file

@ -125,6 +125,10 @@ function mapApplicationSurface(surface) {
// likely have just one output
var child = compositor.viewForOutput(surface, _greenisland_output);
child.resizeSurfaceToItem = true;
child.width = compositorRoot.layers.windows.width;
child.height = compositorRoot.layers.windows.height;
// Create and setup window container
var window = component.createObject(compositorRoot.layers.windows, {"child": child});
compositorRoot.layers.windows.addWindow(window);