changes to font size

This commit is contained in:
George Yatsev 2018-07-09 17:28:55 +02:00
parent eb36911902
commit 465d0755c2
3 changed files with 7 additions and 6 deletions

1
-f Submodule

@ -0,0 +1 @@
Subproject commit d91e9e5b81025acc4d25843a2871e72c8924a8fe

View File

@ -28,9 +28,9 @@ ToolBar {
Layout.fillHeight: true
Layout.margins: app.margins
verticalAlignment: Text.AlignVCenter
font.pixelSize: app.largeFont
font.pixelSize: app.mediumFont
elide: Text.ElideRight
text: root.title
text: root.title.toLowerCase();
}
HeaderButton {
@ -53,9 +53,9 @@ ToolBar {
Layout.fillHeight: true
Layout.margins: app.margins
verticalAlignment: Text.AlignVCenter
font.pixelSize: app.largeFont
font.pixelSize: app.mediumFont
elide: Text.ElideRight
text: qsTr("Menu")
text: qsTr("menu")
}
HeaderButton {

View File

@ -38,9 +38,9 @@ ToolBar {
Layout.fillWidth: true
Layout.fillHeight: true
verticalAlignment: Text.AlignVCenter
font.pixelSize: app.largeFont
font.pixelSize: app.mediumFont
elide: Text.ElideRight
text: root.text.toUpperCase()
text: root.text.toLowerCase();
}
}
}