mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Update utility.tscript
Fixed so remappable actions bound to the control key show the proper bitmap in the menu.
This commit is contained in:
parent
af73e79424
commit
b55be19d7a
|
|
@ -115,7 +115,10 @@ function getButtonBitmap(%device, %button)
|
|||
{
|
||||
if(%button $= "lshift" || %button $= "rshift")
|
||||
%button = "shift";
|
||||
|
||||
|
||||
if(%button $= "lcontrol" || %button $= "rcontrol")
|
||||
%button = "ctrl";
|
||||
|
||||
%assetId = "UI:Keyboard_Black_" @ %button @ "_image";
|
||||
}
|
||||
else if(%device !$= "")
|
||||
|
|
@ -192,4 +195,4 @@ function switchLanguage(%language) //use here the #n as it's the order of inclus
|
|||
// swap existing language from the current core langtable and refresh the gui contents
|
||||
getCoreLangTable().setCurrentLanguage(%language);
|
||||
Canvas.setContent(Canvas.getContent());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue