From f79df07eb1f6be7a844e29e4a44431ce20483bec Mon Sep 17 00:00:00 2001 From: BuddyFriendGuy Date: Fri, 24 Apr 2015 23:54:17 -0400 Subject: [PATCH] added comments explaining poll decision on the spacing --- qcsrc/menu/xonotic/dialog_multiplayer_create.qc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_create.qc b/qcsrc/menu/xonotic/dialog_multiplayer_create.qc index 5ef9ef2c3..662566e5e 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_create.qc +++ b/qcsrc/menu/xonotic/dialog_multiplayer_create.qc @@ -140,7 +140,8 @@ void XonoticServerCreateTab_fill(entity me) // mapListBox is in the right column but the ref is needed for mutators dialog here me.mapListBox = makeXonoticMapList(); - //me.TR(me); + // here we use the following line instead of me.TR(me) for better visual spacing; + // this decision was made in this poll: http://forums.xonotic.org/showthread.php?tid=5445 me.gotoRC(me, me.rows - 2.5, 0); me.TDempty(me, 0.5); me.TD(me, 1, 2, e = makeXonoticButton(_("Mutators"), '0 0 0')); @@ -169,7 +170,8 @@ void XonoticServerCreateTab_fill(entity me) e.onChangeEntity = me.mapListBox; me.mapListBox.controlledTextbox = e; - //me.TR(me); + // here we use the following line instead of me.TR(me) for better visual spacing; + // this decision was made in this poll: http://forums.xonotic.org/showthread.php?tid=5445 me.gotoRC(me, me.rows - 2.5, me.firstColumn); // the selection buttons me.TD(me, 1, 1, e = makeXonoticButton(_("Add shown"), '0 0 0')); -- 2.39.2