From 9a7cbc39b1e6a95d51f92c276d8b444101928d1b Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Mon, 28 Oct 2024 07:11:36 -0500 Subject: [PATCH 1/2] Add label to display name entry field. Signed-off-by: armored-dragon --- interface/resources/qml/hifi/Pal.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index a17eb0c765..b0dbd8becf 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -1039,6 +1039,14 @@ Rectangle { anchors.top: pal.top; anchors.topMargin: 10; 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) NameCard { id: myCard; @@ -1054,7 +1062,7 @@ Rectangle { width: myCardWidth; height: parent.height; // Anchors - anchors.top: parent.top + anchors.top: parent.children[0].bottom anchors.left: parent.left; } Item { @@ -1066,7 +1074,7 @@ Rectangle { RalewayRegular { id: availabilityText; - text: "set availability"; + text: "Availability"; // Text size size: hifi.fontSizes.tabularData; // Anchors From 4834f0e0c3660102e11c89d77c583eb1764f714f Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Mon, 28 Oct 2024 07:59:06 -0500 Subject: [PATCH 2/2] Forgot a semicolon. Signed-off-by: armored-dragon --- interface/resources/qml/hifi/Pal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index b0dbd8becf..b842b736d4 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -1062,7 +1062,7 @@ Rectangle { width: myCardWidth; height: parent.height; // Anchors - anchors.top: parent.children[0].bottom + anchors.top: parent.children[0].bottom; anchors.left: parent.left; } Item {