diff options
Diffstat (limited to 'Header.ui.qml')
-rw-r--r-- | Header.ui.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Header.ui.qml b/Header.ui.qml index 29091b6..4fdeb7c 100644 --- a/Header.ui.qml +++ b/Header.ui.qml @@ -234,7 +234,7 @@ ToolBar { sourceComponent: background } delegate: MenuItem { - id: profileMenuItem + id: menuItem font: Eduport.bsBtnFont horizontalPadding: 16 verticalPadding: 6.4 @@ -242,8 +242,7 @@ ToolBar { contentItem: RowLayout { Image { - source: profileMenuItem - .icon.source + source: menuItem.icon.source sourceSize { width: profileMenuItem .icon.width @@ -261,8 +260,8 @@ ToolBar { } Text { - text: profileMenuItem.text - font: profileMenuItem.font + text: menuItem.text + font: menuItem.font color: highlighted ? Eduport.bsDropdownLinkHoverColor : Eduport.bsDropdownLinkColor |