From 5d9dad3d7e09f96ef4e20c349731c3cd6ae97e63 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 19 Sep 2020 14:58:29 +0200 Subject: [PATCH] Remove hack introduced by previous commit Instead of hardcoding font size, use default font size, this makes the height of the Heading normal and don't overflow. --- app/qml/main.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/qml/main.qml b/app/qml/main.qml index 040b51e8a..2a5f237bf 100644 --- a/app/qml/main.qml +++ b/app/qml/main.qml @@ -36,7 +36,7 @@ Kirigami.ApplicationWindow handleVisible: !root.wideScreen header: Kirigami.AbstractApplicationHeader { - topPadding: Kirigami.Units.smallSpacing / 2 // HACK: not dividing by two makes the header to big and not adding the spacing make it to small + topPadding: Kirigami.Units.smallSpacing bottomPadding: Kirigami.Units.smallSpacing leftPadding: Kirigami.Units.smallSpacing rightPadding: Kirigami.Units.smallSpacing @@ -63,12 +63,11 @@ Kirigami.ApplicationWindow } Kirigami.Heading { - level: 2 + level: 1 text: announcedNameProperty.value Layout.fillWidth: true visible: !nameField.visible elide: Qt.ElideRight - font.pointSize: 18 } Button {