summaryrefslogtreecommitdiff
path: root/features/HomeForm.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'features/HomeForm.ui.qml')
-rw-r--r--features/HomeForm.ui.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/features/HomeForm.ui.qml b/features/HomeForm.ui.qml
index c44aac5..299cf77 100644
--- a/features/HomeForm.ui.qml
+++ b/features/HomeForm.ui.qml
@@ -5,7 +5,6 @@ import QtQuick.Layouts 1.12
Page {
property alias menuButton: menuButton
- property alias titleLabel: titleLabel
property alias profileButton: profileButton
property alias contentView: contentView
@@ -19,10 +18,11 @@ Page {
ToolButton {
id: menuButton
icon.name: "menu-button"
+ icon.source: "/components/icons/menu-24px.svg"
highlighted: true
}
Label {
- id: titleLabel
+ text: contentView.currentItem.title
Layout.leftMargin: 16
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignLeft
@@ -36,6 +36,7 @@ Page {
ToolButton {
id: profileButton
icon.name: "profile-button"
+ icon.source: "/components/icons/profile-24px.svg"
highlighted: true
}
}