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.
This commit is contained in:
parent
21f0227e06
commit
5d9dad3d7e
1 changed files with 2 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue