From 9a989e5adadef17363291842df7d160247f8a316 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Thu, 3 Oct 2024 10:38:01 -0500 Subject: [PATCH] Fixed lingering references to `avatarIcon`. Signed-off-by: armored-dragon --- interface/resources/qml/hifi/AvatarApp.qml | 1 - .../resources/qml/hifi/avatarapp/AvatarAppHeader.qml | 8 +++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/interface/resources/qml/hifi/AvatarApp.qml b/interface/resources/qml/hifi/AvatarApp.qml index 2c8d62a598..0a02418a8b 100644 --- a/interface/resources/qml/hifi/AvatarApp.qml +++ b/interface/resources/qml/hifi/AvatarApp.qml @@ -238,7 +238,6 @@ Rectangle { } pageTitle: currentPage - avatarIconVisible: mainPageVisible settingsButtonVisible: mainPageVisible onSettingsClicked: { displayNameInput.focus = false; diff --git a/interface/resources/qml/hifi/avatarapp/AvatarAppHeader.qml b/interface/resources/qml/hifi/avatarapp/AvatarAppHeader.qml index bf8282f947..334a846a81 100644 --- a/interface/resources/qml/hifi/avatarapp/AvatarAppHeader.qml +++ b/interface/resources/qml/hifi/avatarapp/AvatarAppHeader.qml @@ -9,7 +9,6 @@ ShadowRectangle { height: 60 property alias pageTitle: title.text - property alias avatarIconVisible: avatarIcon.visible property alias settingsButtonVisible: settingsButton.visible signal settingsClicked; @@ -24,9 +23,8 @@ ShadowRectangle { RalewaySemiBold { id: title size: 22; - anchors.left: avatarIcon.visible ? avatarIcon.right : avatarIcon.left - anchors.leftMargin: 4 - anchors.verticalCenter: avatarIcon.verticalCenter + x: 20 + anchors.verticalCenter: parent.verticalCenter text: 'Avatar' } @@ -34,7 +32,7 @@ ShadowRectangle { id: settingsButton anchors.right: parent.right anchors.rightMargin: 30 - anchors.verticalCenter: avatarIcon.verticalCenter + anchors.verticalCenter: parent.verticalCenter text: "&" MouseArea {