- Complied the SystemMenu buttons to the groupNum highlighting implementation as they're simple buttons

- Fixed issue of Query Server on-screen button tripping a join action
- Added playername textEdit field to Join Server menu
- Fixed issue of messageBox on-screen buttons not making the input events properly after adding the make/break check from prior commit
- Added MenuTextEditProfile for editable text fields in menu
- Fixed issue of not getting the correct shift key bitmap if the button name was l/rshift
This commit is contained in:
Areloch 2024-01-01 14:11:43 -06:00
parent e71880b898
commit 150684a47d
6 changed files with 87 additions and 23 deletions

View file

@ -113,6 +113,9 @@ function getButtonBitmap(%device, %button)
}
else if(%device $= "Keyboard" || %device $= "Mouse")
{
if(%button $= "lshift" || %button $= "rshift")
%button = "shift";
%assetId = "UI:Keyboard_Black_" @ %button @ "_image";
}
else if(%device !$= "")