Removing the controlsHelpDlg to reduce maintenance overhead.

This commit is contained in:
thecelloman 2013-03-20 16:51:42 -04:00
parent 6c31872928
commit b452597696
5 changed files with 0 additions and 141 deletions

View file

@ -47,14 +47,6 @@ function showPlayerList(%val)
moveMap.bind( keyboard, F2, showPlayerList );
function showControlsHelp(%val)
{
if (%val)
ControlsHelpDlg.toggle();
}
moveMap.bind(keyboard, h, showControlsHelp);
function hideHUDs(%val)
{
if (%val)

View file

@ -27,7 +27,6 @@
function clientCmdGameStart(%seq)
{
PlayerListGui.zeroScores();
ControlsHelpDlg.toggle();
}
function clientCmdGameEnd(%seq)

View file

@ -74,7 +74,6 @@ function initClient()
exec("art/gui/ChatHud.gui");
exec("art/gui/playerList.gui");
exec("art/gui/hudlessGui.gui");
exec("art/gui/controlsHelpDlg.gui");
// Load up the shell GUIs
exec("art/gui/mainMenuGui.gui");

View file

@ -56,7 +56,6 @@ function GameConnection::initialControlSet(%this)
if (Canvas.getContent() != PlayGui.getId())
{
Canvas.setContent(PlayGui);
ControlsHelpDlg.toggle();
}
}
}