Medical GUI - Add R and L labels on body image (#9480)

Add R and L labels on body image
This commit is contained in:
amsteadrayle 2023-10-12 12:44:13 -04:00 committed by GitHub
parent 176482381a
commit 2eb914836c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -432,6 +432,23 @@ class ACE_Medical_Menu {
};
class TriageToggle: GVAR(TriageToggle) {};
class TriageSelect: GVAR(TriageSelect) {};
class BodyLabelLeft: RscText {
idc = -1;
style = ST_RIGHT;
text = CSTRING(BodyLabelLeft);
font = "RobotoCondensedBold";
x = QUOTE(POS_X(16.5));
y = QUOTE(POS_Y(10.5));
w = QUOTE(POS_W(6.0));
h = QUOTE(POS_H(2.0));
sizeEx = QUOTE(POS_H(1.4));
colorText[] = {1, 1, 1, 0.33};
shadow = 0;
};
class BodyLabelRight: BodyLabelLeft {
style = ST_LEFT;
text = CSTRING(BodyLabelRight);
};
};
};

View File

@ -1343,5 +1343,11 @@
<German>Chronisches Trauma</German>
<Korean>심각한 외상</Korean>
</Key>
<Key ID="STR_ACE_Medical_GUI_BodyLabelLeft">
<English>L</English>
</Key>
<Key ID="STR_ACE_Medical_GUI_BodyLabelRight">
<English>R</English>
</Key>
</Package>
</Project>