mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 00:13:29 +02:00
Fixed lingering references to avatarIcon
.
Signed-off-by: armored-dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
2824067ecb
commit
9a989e5ada
2 changed files with 3 additions and 6 deletions
|
@ -238,7 +238,6 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
pageTitle: currentPage
|
pageTitle: currentPage
|
||||||
avatarIconVisible: mainPageVisible
|
|
||||||
settingsButtonVisible: mainPageVisible
|
settingsButtonVisible: mainPageVisible
|
||||||
onSettingsClicked: {
|
onSettingsClicked: {
|
||||||
displayNameInput.focus = false;
|
displayNameInput.focus = false;
|
||||||
|
|
|
@ -9,7 +9,6 @@ ShadowRectangle {
|
||||||
height: 60
|
height: 60
|
||||||
|
|
||||||
property alias pageTitle: title.text
|
property alias pageTitle: title.text
|
||||||
property alias avatarIconVisible: avatarIcon.visible
|
|
||||||
property alias settingsButtonVisible: settingsButton.visible
|
property alias settingsButtonVisible: settingsButton.visible
|
||||||
|
|
||||||
signal settingsClicked;
|
signal settingsClicked;
|
||||||
|
@ -24,9 +23,8 @@ ShadowRectangle {
|
||||||
RalewaySemiBold {
|
RalewaySemiBold {
|
||||||
id: title
|
id: title
|
||||||
size: 22;
|
size: 22;
|
||||||
anchors.left: avatarIcon.visible ? avatarIcon.right : avatarIcon.left
|
x: 20
|
||||||
anchors.leftMargin: 4
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.verticalCenter: avatarIcon.verticalCenter
|
|
||||||
text: 'Avatar'
|
text: 'Avatar'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +32,7 @@ ShadowRectangle {
|
||||||
id: settingsButton
|
id: settingsButton
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.rightMargin: 30
|
anchors.rightMargin: 30
|
||||||
anchors.verticalCenter: avatarIcon.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
text: "&"
|
text: "&"
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
Loading…
Reference in a new issue