mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 23:32:57 +02:00
Add label to display name entry field.
Signed-off-by: armored-dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
8b4207d18c
commit
9a7cbc39b1
1 changed files with 10 additions and 2 deletions
|
@ -1039,6 +1039,14 @@ Rectangle {
|
||||||
anchors.top: pal.top;
|
anchors.top: pal.top;
|
||||||
anchors.topMargin: 10;
|
anchors.topMargin: 10;
|
||||||
anchors.left: pal.left;
|
anchors.left: pal.left;
|
||||||
|
RalewayRegular {
|
||||||
|
text: " Display Name";
|
||||||
|
size: hifi.fontSizes.tabularData;
|
||||||
|
anchors.left: parent.left;
|
||||||
|
|
||||||
|
color: hifi.colors.baseGrayHighlight;
|
||||||
|
verticalAlignment: Text.AlignTop;
|
||||||
|
}
|
||||||
// This NameCard refers to the current user's NameCard (the one above the nearbyTable)
|
// This NameCard refers to the current user's NameCard (the one above the nearbyTable)
|
||||||
NameCard {
|
NameCard {
|
||||||
id: myCard;
|
id: myCard;
|
||||||
|
@ -1054,7 +1062,7 @@ Rectangle {
|
||||||
width: myCardWidth;
|
width: myCardWidth;
|
||||||
height: parent.height;
|
height: parent.height;
|
||||||
// Anchors
|
// Anchors
|
||||||
anchors.top: parent.top
|
anchors.top: parent.children[0].bottom
|
||||||
anchors.left: parent.left;
|
anchors.left: parent.left;
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
|
@ -1066,7 +1074,7 @@ Rectangle {
|
||||||
|
|
||||||
RalewayRegular {
|
RalewayRegular {
|
||||||
id: availabilityText;
|
id: availabilityText;
|
||||||
text: "set availability";
|
text: "Availability";
|
||||||
// Text size
|
// Text size
|
||||||
size: hifi.fontSizes.tabularData;
|
size: hifi.fontSizes.tabularData;
|
||||||
// Anchors
|
// Anchors
|
||||||
|
|
Loading…
Reference in a new issue