diff --git a/examples/printerdemo/ui/printerdemo.60 b/examples/printerdemo/ui/printerdemo.60 index 7e71e166a..01d3b4393 100644 --- a/examples/printerdemo/ui/printerdemo.60 +++ b/examples/printerdemo/ui/printerdemo.60 @@ -35,7 +35,7 @@ CopyPage := Page { Row { preview := Preview { - minimum_height: root.height - layout.padding_top - layout.padding_bottom; + height: root.height - layout.padding_top - layout.padding_bottom; } GridLayout { Row { @@ -55,6 +55,9 @@ CopyPage := Page { font_size: 28px; } } + Row { + Rectangle {} + } } } } @@ -153,7 +156,7 @@ PrintPage := Page { Row { preview := Preview { - minimum_height: root.height - layout.padding_top - layout.padding_bottom; + height: root.height - layout.padding_top - layout.padding_bottom; } GridLayout { Row { @@ -191,7 +194,6 @@ PrintPage := Page { font_size: 28px; } } - Rectangle {} } } }