From: terencehill Date: Tue, 4 Aug 2015 17:33:06 +0000 (+0200) Subject: Rename a cvar that had a typo in its name X-Git-Tag: xonotic-v0.8.1~12^2~13 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d1b150fd03b39444bda6219cda2fcc14197adfe4;p=xonotic%2Fxonotic-data.pk3dir.git Rename a cvar that had a typo in its name --- diff --git a/_hud_descriptions.cfg b/_hud_descriptions.cfg index 17ea14fbb..9c493e5c0 100644 --- a/_hud_descriptions.cfg +++ b/_hud_descriptions.cfg @@ -341,4 +341,4 @@ seta hud_panel_itemstime_progressbar_reduced "" "progressbar is displayed only i seta hud_panel_itemstime_showspawned "" "show icons of already spawned items" seta hud_panel_itemstime_text "" "show text" seta hud_panel_itemstime_ratio "" "ratio between space reserved for text and icon width of each item entry (min value is 2)" -seta hud_panel_itemstime_size_dinamic "" "reduce panel size by removing spacing beetwen items" +seta hud_panel_itemstime_dynamicsize "" "allow panel size reduction by removing spacing among items" diff --git a/hud_luma.cfg b/hud_luma.cfg index c94f3dfb4..7245c1156 100644 --- a/hud_luma.cfg +++ b/hud_luma.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "0" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "2" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/hud_luminos.cfg b/hud_luminos.cfg index 80b3ddefc..e871cb121 100644 --- a/hud_luminos.cfg +++ b/hud_luminos.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "0" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "2" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/hud_luminos_minimal.cfg b/hud_luminos_minimal.cfg index 6c9cf3d2d..2abba015e 100644 --- a/hud_luminos_minimal.cfg +++ b/hud_luminos_minimal.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "0" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "2" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/hud_luminos_minimal_xhair.cfg b/hud_luminos_minimal_xhair.cfg index ac7a82866..a8136594a 100644 --- a/hud_luminos_minimal_xhair.cfg +++ b/hud_luminos_minimal_xhair.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "0" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "2" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/hud_luminos_old.cfg b/hud_luminos_old.cfg index 5f949a03c..d60eb1c9b 100644 --- a/hud_luminos_old.cfg +++ b/hud_luminos_old.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "1" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "3.5" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/hud_nexuiz.cfg b/hud_nexuiz.cfg index a04276b2d..0c12bbdb2 100644 --- a/hud_nexuiz.cfg +++ b/hud_nexuiz.cfg @@ -339,6 +339,6 @@ seta hud_panel_itemstime_progressbar_reduced "0" seta hud_panel_itemstime_showspawned "0" seta hud_panel_itemstime_text "1" seta hud_panel_itemstime_ratio "2" -seta hud_panel_itemstime_size_dinamic "1" +seta hud_panel_itemstime_dynamicsize "1" menu_sync diff --git a/qcsrc/client/autocvars.qh b/qcsrc/client/autocvars.qh index f171bc7fb..60ebac0b1 100644 --- a/qcsrc/client/autocvars.qh +++ b/qcsrc/client/autocvars.qh @@ -270,7 +270,7 @@ float autocvar_hud_panel_healtharmor_progressbar_gfx_lowhealth; float autocvar_hud_panel_healtharmor_progressbar_gfx_smooth; int autocvar_hud_panel_healtharmor_text; int autocvar_hud_panel_itemstime = 2; -float autocvar_hud_panel_itemstime_size_dinamic = 1; +float autocvar_hud_panel_itemstime_dynamicsize = 1; float autocvar_hud_panel_itemstime_ratio = 2; int autocvar_hud_panel_itemstime_iconalign; bool autocvar_hud_panel_itemstime_progressbar = 0; diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index be43a86ec..55bfbe80b 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4788,7 +4788,7 @@ void HUD_ItemsTime(void) vector offset = '0 0 0'; float newSize; - if(autocvar_hud_panel_itemstime_size_dinamic) + if(autocvar_hud_panel_itemstime_dynamicsize) { if(autocvar__hud_configure) if(menu_enabled != 2) diff --git a/qcsrc/client/hud_config.qc b/qcsrc/client/hud_config.qc index 507f24b54..d4330cda7 100644 --- a/qcsrc/client/hud_config.qc +++ b/qcsrc/client/hud_config.qc @@ -212,7 +212,7 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write_PanelCvar_q("_showspawned"); HUD_Write_PanelCvar_q("_text"); HUD_Write_PanelCvar_q("_ratio"); - HUD_Write_PanelCvar_q("_size_dinamic"); + HUD_Write_PanelCvar_q("_dynamicsize"); break; } HUD_Write("\n"); diff --git a/qcsrc/menu/xonotic/dialog_hudpanel_itemstime.qc b/qcsrc/menu/xonotic/dialog_hudpanel_itemstime.qc index a6436179b..cdafe2989 100644 --- a/qcsrc/menu/xonotic/dialog_hudpanel_itemstime.qc +++ b/qcsrc/menu/xonotic/dialog_hudpanel_itemstime.qc @@ -41,6 +41,6 @@ void XonoticHUDItemsTimeDialog_fill(entity me) me.TR(me); me.TD(me, 1, 4, e = makeXonoticCheckBox(0, "hud_panel_itemstime_showspawned", _("Show spawned items"))); me.TR(me); - me.TD(me, 1, 4, e = makeXonoticCheckBox(0, "hud_panel_itemstime_size_dinamic", _("Dinamic size"))); + me.TD(me, 1, 4, e = makeXonoticCheckBox(0, "hud_panel_itemstime_dynamicsize", _("Dynamic size"))); } #endif