Skip to content

Commit

Permalink
Merge pull request #1204 from Armored-Dragon/fix/Pal_Application_Disp…
Browse files Browse the repository at this point in the history
…layname_label

Add a label to the Pal application 'displayname' field
  • Loading branch information
ksuprynowicz authored Nov 28, 2024
2 parents d547dc1 + 4834f0e commit 90ddd51
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions interface/resources/qml/hifi/Pal.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 {
Expand All @@ -1066,7 +1074,7 @@ Rectangle {

RalewayRegular {
id: availabilityText;
text: "set availability";
text: "Availability";
// Text size
size: hifi.fontSizes.tabularData;
// Anchors
Expand Down

0 comments on commit 90ddd51

Please sign in to comment.