From: BuddyFriendGuy Date: Sat, 25 Apr 2015 03:54:17 +0000 (-0400) Subject: added comments explaining poll decision on the spacing X-Git-Tag: xonotic-v0.8.1~23^2~4 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f79df07eb1f6be7a844e29e4a44431ce20483bec;p=xonotic%2Fxonotic-data.pk3dir.git added comments explaining poll decision on the spacing --- 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'));