diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-11-27 14:42:46 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-11-27 14:42:46 +0100 |
commit | f232ff26c961768b2276f44100f522be243c598b (patch) | |
tree | 0cf5567cb84aacce00adcb1bc2f5fcc603234d91 /components | |
parent | ec2625cd7e0baa641e473c8ead6f26aa8f8f9dfc (diff) | |
download | kube-f232ff26c961768b2276f44100f522be243c598b.tar.gz kube-f232ff26c961768b2276f44100f522be243c598b.zip |
An explicit maximum widht is necessary,
otherwise the item just grows beyond the layout.
Diffstat (limited to 'components')
-rw-r--r-- | components/kube/contents/ui/ComposerView.qml | 4 |
1 files changed, 3 insertions, 1 deletions
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 { | |||
390 | } | 390 | } |
391 | 391 | ||
392 | spacing: Kube.Units.largeSpacing | 392 | spacing: Kube.Units.largeSpacing |
393 | |||
394 | ColumnLayout { | 393 | ColumnLayout { |
394 | Layout.maximumWidth: parent.width | ||
395 | Layout.fillWidth: true | 395 | Layout.fillWidth: true |
396 | Layout.fillHeight: true | 396 | Layout.fillHeight: true |
397 | 397 | ||
@@ -465,6 +465,7 @@ Kube.View { | |||
465 | } | 465 | } |
466 | 466 | ||
467 | RowLayout { | 467 | RowLayout { |
468 | Layout.maximumWidth: parent.width | ||
468 | width: parent.width | 469 | width: parent.width |
469 | height: Kube.Units.gridUnit | 470 | height: Kube.Units.gridUnit |
470 | 471 | ||
@@ -486,6 +487,7 @@ Kube.View { | |||
486 | } | 487 | } |
487 | 488 | ||
488 | ColumnLayout { | 489 | ColumnLayout { |
490 | Layout.maximumWidth: parent.width | ||
489 | Layout.fillWidth: true | 491 | Layout.fillWidth: true |
490 | Kube.Label { | 492 | Kube.Label { |
491 | id: fromLabel | 493 | id: fromLabel |