From f232ff26c961768b2276f44100f522be243c598b Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 27 Nov 2017 14:42:46 +0100 Subject: An explicit maximum widht is necessary, otherwise the item just grows beyond the layout. --- components/kube/contents/ui/ComposerView.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml index 29141f28..520b8113 100644 --- a/components/kube/contents/ui/ComposerView.qml +++ b/components/kube/contents/ui/ComposerView.qml @@ -390,8 +390,8 @@ Kube.View { } spacing: Kube.Units.largeSpacing - ColumnLayout { + Layout.maximumWidth: parent.width Layout.fillWidth: true Layout.fillHeight: true @@ -465,6 +465,7 @@ Kube.View { } RowLayout { + Layout.maximumWidth: parent.width width: parent.width height: Kube.Units.gridUnit @@ -486,6 +487,7 @@ Kube.View { } ColumnLayout { + Layout.maximumWidth: parent.width Layout.fillWidth: true Kube.Label { id: fromLabel -- cgit v1.2.3