From aabf67791c0c178ecd0dbc832fbb965fc8ffacf6 Mon Sep 17 00:00:00 2001
From: SeeLook <seelook@gmail.com>
Date: Sat, 8 Feb 2025 11:05:25 +0100
Subject: [PATCH] ChangesPage: fit change text into Tile

---
 src/qml/about/ChangesPage.qml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/qml/about/ChangesPage.qml b/src/qml/about/ChangesPage.qml
index 594d7c0f..94b10242 100644
--- a/src/qml/about/ChangesPage.qml
+++ b/src/qml/about/ChangesPage.qml
@@ -16,7 +16,7 @@ ListView {
 
     delegate: Tile {
         width: chList.width
-        height: relText.height + NOO.factor()
+        height: relText.height + NOO.factor() * 2
         bgColor: index % 2 ? activPal.base : activPal.alternateBase
 
         Text {
@@ -24,7 +24,6 @@ ListView {
 
             text: modelData
             x: NOO.factor() / 2
-            y: NOO.factor() / 2
             width: chList.width - NOO.factor()
             horizontalAlignment: text.substring(0, 4) === "<h1>" ? Text.AlignHCenter : Text.AlignLeft
             color: activPal.text
-- 
GitLab