From c04497b1b0a5bbda3b1a3fcb34b84bd046249963 Mon Sep 17 00:00:00 2001 From: Oscar Andreasson Date: Tue, 22 Dec 2015 22:51:05 +0100 Subject: [PATCH] Propagate width/height to WeatherInfo --- Weather.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Weather.qml b/Weather.qml index 5329e8f..93a405c 100644 --- a/Weather.qml +++ b/Weather.qml @@ -11,11 +11,14 @@ import net.frozentux.weatherinfo 1.0 MirrorWindow { + id: root color: "black" windowHeight: 3 WeatherInfo { - id: weatherdata + + width: root.width + height: root.height } }