]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Add a "Join the game" button to the Welcome dialog terencehill/welcome_dialog2
authorterencehill <piuntn@gmail.com>
Thu, 17 Nov 2016 15:39:06 +0000 (16:39 +0100)
committerterencehill <piuntn@gmail.com>
Thu, 17 Nov 2016 15:39:06 +0000 (16:39 +0100)
qcsrc/menu/xonotic/dialog_welcome.qc

index 6ef42a5797c9c38295579bce2c35d49cbfe099fd..1dd0b1263ff16c13be90fe5767d249f37e1cda30 100644 (file)
@@ -93,9 +93,10 @@ void XonoticWelcomeDialog_fill(entity me)
                me.TD(me, me.rows - 4 - 1, me.columns, me.serverinfo_MOTD_ent = makeXonoticTextBox());
                        me.serverinfo_MOTD_ent.allowColors = 1;
        me.gotoRC(me, me.rows - 1, 0);
-               me.TD(me, 1, me.columns / 2, e = makeXonoticCommandButton(_("Disconnect"), '0 0 0', "disconnect", COMMANDBUTTON_CLOSE));
-               me.TD(me, 1, me.columns / 2, e = makeXonoticButton(_("OK"), '0 0 0'));
+               me.TD(me, 1, me.columns / 3, e = makeXonoticCommandButton(_("Disconnect"), '0 0 0', "disconnect", COMMANDBUTTON_CLOSE));
+               me.TD(me, 1, me.columns / 3, e = makeXonoticCommandButton(_("Join the game"), '0 0 0', "join", COMMANDBUTTON_CLOSE));
+                       e.preferredFocusPriority = 1;
+               me.TD(me, 1, me.columns / 3, e = makeXonoticButton(_("Spectate"), '0 0 0'));
                        e.onClick = Dialog_Close;
                        e.onClickEntity = me;
-                       e.preferredFocusPriority = 1;
 }