]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Menu Settings/Game/Weapons: fix checkbox on the bottom overlapping the Apply button
authorterencehill <piuntn@gmail.com>
Wed, 29 Jan 2025 02:04:02 +0000 (03:04 +0100)
committerterencehill <piuntn@gmail.com>
Wed, 29 Jan 2025 02:04:02 +0000 (03:04 +0100)
Also fix non-empty string checks in a few display functions

qcsrc/common/items/item.qh
qcsrc/common/mutators/mutator/status_effects/all.qh
qcsrc/common/weapons/weapon.qh
qcsrc/menu/xonotic/dialog_settings_game_weapons.qc

index fb8ea45a2e7bfd235df991e99fb7ac4acfd5c277..3b5970a4a51f9480573e5fd4df9381e9bdb70190 100644 (file)
@@ -135,7 +135,7 @@ CLASS(GameItem, Object)
     METHOD(GameItem, display, void(GameItem this, void(string name, string icon) returns))
     {
         TC(GameItem, this);
-        returns(this.m_name, this.m_icon ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.m_icon) : string_null);
+        returns(this.m_name, (this.m_icon != "") ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.m_icon) : string_null);
     }
     METHOD(GameItem, show, void(GameItem this))
     {
index b2f8ec4e57c14fd9633c0a83178bf97c73f892a3..7267330364ccf3f568eb0621ef46673a5ebb1d25 100644 (file)
@@ -54,6 +54,6 @@ CLASS(StatusEffect, Object)
        METHOD(StatusEffect, display, void(StatusEffect this, void(string name, string icon) returns))
        {
                TC(StatusEffect, this);
-               returns(this.m_name, this.m_icon ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.m_icon) : string_null);
+               returns(this.m_name, (this.m_icon != "") ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.m_icon) : string_null);
        }
 ENDCLASS(StatusEffect)
index 0a7813428ab0f0f7cb9a67c5aaecb37fa8ec08e0..611f8f5f7295a2b25aebdcceb24da791e6e998f4 100644 (file)
@@ -127,7 +127,7 @@ CLASS(Weapon, Object)
        /** (SERVER) update cvar based properties */
        METHOD(Weapon, wr_update, void(Weapon this)) {}
        METHOD(Weapon, display, void(entity this, void(string name, string icon) returns)) {
-               returns(this.m_name, this.model2 ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.model2) : string_null);
+               returns(this.m_name, (this.model2 != "") ? sprintf("/gfx/hud/%s/%s", cvar_string("hud_skin"), this.model2) : string_null);
        }
 ENDCLASS(Weapon)
 
index 0be20329d0456bba086e3b6e6609e93a8ea7d635..0254e3d04bfa13db3763241ed355e41db0d075b2 100644 (file)
@@ -101,14 +101,11 @@ void XonoticGameWeaponsSettingsTab_fill(entity me)
                        me.TD(me, 1, 0.9, e = makeXonoticRadioButton(1, "cl_tracers_teamcolor", "2", _("Always")));
        me.TR(me);
        me.TR(me);
-               me.TDempty(me, 0.2);
-               me.TD(me, 1, 2.8, e = makeXonoticCheckBox_T(0, "cl_followmodel", _("Gun model swaying"), "-"));
-               makeMulti(e, "cl_leanmodel");
-               setDependent(e, "r_drawviewmodel", 1, 1);
-       me.TR(me);
-               me.TDempty(me, 0.2);
-               me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, "cl_bobmodel", _("Gun model bobbing")));
-               setDependent(e, "r_drawviewmodel", 1, 1);
+               me.TD(me, 1, 2.8 / 2, e = makeXonoticCheckBox_T(0, "cl_followmodel", _("Gun model swaying"), "-"));
+                       makeMulti(e, "cl_leanmodel");
+                       setDependent(e, "r_drawviewmodel", 1, 1);
+               me.TD(me, 1, 2.8 / 2, e = makeXonoticCheckBox(0, "cl_bobmodel", _("Gun model bobbing")));
+                       setDependent(e, "r_drawviewmodel", 1, 1);
        me.gotoRC(me, me.rows - 1, 0); me.setFirstColumn(me, me.currentColumn);
                me.TD(me, 1, me.columns, weaponsApplyButton);
 }