From 1cf43b7ae77320bbc8b029e16b49e73aff086c05 Mon Sep 17 00:00:00 2001 From: Jordy Ruiz Date: Tue, 4 Dec 2018 19:04:43 +0100 Subject: [PATCH] Move 'Show user IDs' option up to keep consistency --- src/game/client/components/menus_settings.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/game/client/components/menus_settings.cpp b/src/game/client/components/menus_settings.cpp index 483d7f9b2..a61cbedb2 100644 --- a/src/game/client/components/menus_settings.cpp +++ b/src/game/client/components/menus_settings.cpp @@ -991,18 +991,18 @@ void CMenus::RenderSettingsGeneral(CUIRect MainView) if(DoButton_CheckBox(&s_Showhud, Localize("Show ingame HUD"), g_Config.m_ClShowhud, &Button)) g_Config.m_ClShowhud ^= 1; - GameRight.HSplitTop(Spacing, 0, &GameRight); - GameRight.HSplitTop(ButtonHeight, &Button, &GameRight); - static int s_Showsocial = 0; - if(DoButton_CheckBox(&s_Showsocial, Localize("Show social"), g_Config.m_ClShowsocial, &Button)) - g_Config.m_ClShowsocial ^= 1; - GameRight.HSplitTop(Spacing, 0, &GameRight); GameRight.HSplitTop(ButtonHeight, &Button, &GameRight); static int s_ShowUserId = 0; if(DoButton_CheckBox(&s_ShowUserId, Localize("Show user IDs"), g_Config.m_ClShowUserId, &Button)) g_Config.m_ClShowUserId ^= 1; + GameRight.HSplitTop(Spacing, 0, &GameRight); + GameRight.HSplitTop(ButtonHeight, &Button, &GameRight); + static int s_Showsocial = 0; + if(DoButton_CheckBox(&s_Showsocial, Localize("Show social"), g_Config.m_ClShowsocial, &Button)) + g_Config.m_ClShowsocial ^= 1; + // show chat messages button if(g_Config.m_ClShowsocial) {