From 9f6961eb44eab1f3a618733f10a1c2b002e13ad5 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 16 Jun 2024 16:49:01 +0200 Subject: [PATCH] Fix slightly wrong string alignment at the bottom of the first run dialog --- qcsrc/menu/xonotic/dialog_firstrun.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/menu/xonotic/dialog_firstrun.qc b/qcsrc/menu/xonotic/dialog_firstrun.qc index f17699b37..b8f9b00a5 100644 --- a/qcsrc/menu/xonotic/dialog_firstrun.qc +++ b/qcsrc/menu/xonotic/dialog_firstrun.qc @@ -80,7 +80,7 @@ void XonoticFirstRunDialog_fill(entity me) me.TR(me); me.TR(me); - me.gotoRC(me, me.rows - 4, 0); + me.gotoRC(me, me.rows - 4, 0); me.setFirstColumn(me, me.currentColumn); me.TD(me, 1, me.columns, e = makeXonoticTextLabel(0.5, _("Allow player statistics to use your nickname at stats.xonotic.org?"))); me.gotoRC(me, me.rows - 3, 0); -- 2.39.2