From 0e9c1723f2b66bf3903e43efb74dd924e601df07 Mon Sep 17 00:00:00 2001 From: Damocles Date: Wed, 22 Apr 2026 22:20:08 +0200 Subject: [PATCH] weather applet: convert newlines to br for RichText rendering --- shell/applets/WeatherApplet.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/applets/WeatherApplet.qml b/shell/applets/WeatherApplet.qml index 9cd5ad2..2c716a8 100644 --- a/shell/applets/WeatherApplet.qml +++ b/shell/applets/WeatherApplet.qml @@ -26,7 +26,7 @@ Column { Text { width: parent.width - 24 anchors.horizontalCenter: parent.horizontalCenter - text: S.WeatherService.tooltip + text: S.WeatherService.tooltip.replace(/\n/g, "
") textFormat: Text.RichText color: S.Theme.base05 font.pixelSize: S.Theme.fontSize - 2