diff options
| author | Thomas <lordskelethom@gmail.com> | 2010-05-30 12:01:11 +0000 |
|---|---|---|
| committer | Thomas <lordskelethom@gmail.com> | 2010-05-30 12:01:11 +0000 |
| commit | 361380d63039737df51c1ed684d5f70758c96790 (patch) | |
| tree | 6709a802772f65dc26eb6acf332023b89bf193f8 /src/game/client/components/menus_settings.cpp | |
| parent | 47b68170ad8a0d6b4fd5be182d8ba0c953114cb4 (diff) | |
| download | zcatch-361380d63039737df51c1ed684d5f70758c96790.tar.gz zcatch-361380d63039737df51c1ed684d5f70758c96790.zip | |
*some esthetic changes
*split "CHud::RenderGoals()" *added "reload" command *added the ability to show last chat lines (+show_chat) *updated french.txt
Diffstat (limited to 'src/game/client/components/menus_settings.cpp')
| -rw-r--r-- | src/game/client/components/menus_settings.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/client/components/menus_settings.cpp b/src/game/client/components/menus_settings.cpp index dc5451b2..af1c8fcc 100644 --- a/src/game/client/components/menus_settings.cpp +++ b/src/game/client/components/menus_settings.cpp @@ -302,6 +302,7 @@ static CKeyInfo gs_aKeys[] = { Localize("Vote no"), "vote no", 0 }, { Localize("Chat"), "chat all", 0 }, { Localize("Team chat"), "chat team", 0 }, + { Localize("Show chat"), "+show_chat", 0 }, { Localize("Emoticon"), "+emote", 0 }, { Localize("Console"), "toggle_local_console", 0 }, { Localize("Remote console"), "toggle_remote_console", 0 }, @@ -418,7 +419,7 @@ void CMenus::RenderSettingsControls(CUIRect MainView) TextRender()->Text(0, ChatSettings.x, ChatSettings.y, 14, Localize("Chat"), -1); ChatSettings.HSplitTop(14.0f+5.0f+10.0f, 0, &ChatSettings); - UiDoGetButtons(14, 16, ChatSettings); + UiDoGetButtons(14, 17, ChatSettings); } // misc settings @@ -431,7 +432,7 @@ void CMenus::RenderSettingsControls(CUIRect MainView) TextRender()->Text(0, MiscSettings.x, MiscSettings.y, 14, Localize("Miscellaneous"), -1); MiscSettings.HSplitTop(14.0f+5.0f+10.0f, 0, &MiscSettings); - UiDoGetButtons(16, 21, MiscSettings); + UiDoGetButtons(17, 21, MiscSettings); } // defaults |