From: terencehill Date: Sun, 3 Apr 2011 22:36:51 +0000 (+0200) Subject: Fix hud_panel_physics_baralign slider, value field text was unreadable because too... X-Git-Tag: xonotic-v0.5.0~269^2~22 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3ae2eeec56497035b6dc0267e3263b48ff1dd47f;p=xonotic%2Fxonotic-data.pk3dir.git Fix hud_panel_physics_baralign slider, value field text was unreadable because too much compressed --- diff --git a/qcsrc/menu/xonotic/dialog_hudpanel_physics.c b/qcsrc/menu/xonotic/dialog_hudpanel_physics.c index a49cd34a2..2564f74a1 100644 --- a/qcsrc/menu/xonotic/dialog_hudpanel_physics.c +++ b/qcsrc/menu/xonotic/dialog_hudpanel_physics.c @@ -29,7 +29,7 @@ void XonoticHUDPhysicsDialog_fill(entity me) me.TR(me); me.TD(me, 1, 1.4, e = makeXonoticCheckBox(0, "hud_panel_physics_progressbar", _("Status bar"))); - me.TD(me, 1, 1.6, e = makeXonoticTextSlider("hud_panel_physics_baralign")); + me.TD(me, 1, 2.6, e = makeXonoticTextSlider("hud_panel_physics_baralign")); e.addValue(e, _("Left align") , "0"); e.addValue(e, _("Right align") , "1"); e.addValue(e, _("Inward align") , "2");