Removed button background from command icons

This was SVN commit r8246.
This commit is contained in:
WhiteTreePaladin 2010-10-02 23:24:13 +00:00
parent cd12571845
commit f9b5bd37ca
2 changed files with 2 additions and 2 deletions

View File

@ -524,7 +524,7 @@
> >
<object size="0 0 100% 100%"> <object size="0 0 100% 100%">
<repeat count="9"> <repeat count="9">
<object name="unitCommandButton[n]" hidden="true" style="iconButton" type="button" size="0 0 32 32" tooltip_style="snToolTipBottom"> <object name="unitCommandButton[n]" hidden="true" type="button" size="0 0 32 32" tooltip_style="snToolTipBottom">
<object name="unitCommandIcon[n]" ghost="true" type="image" size="0 0 32 32" style="commandIcon"/> <object name="unitCommandIcon[n]" ghost="true" type="image" size="0 0 32 32" style="commandIcon"/>
</object> </object>
</repeat> </repeat>

View File

@ -189,13 +189,13 @@ function getEntityFormationsList(entState)
function getEntityCommandsList(entState) function getEntityCommandsList(entState)
{ {
var commands = []; var commands = [];
commands.push("delete");
commands.push("Stop"); commands.push("Stop");
commands.push("Stop that!"); commands.push("Stop that!");
commands.push("Really stop now, OK?!"); commands.push("Really stop now, OK?!");
// commands.push("command4"); // commands.push("command4");
// commands.push("command5"); // commands.push("command5");
// commands.push("command6"); // commands.push("command6");
commands.push("delete");
return commands; return commands;
} }