]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Welcome dialog: add an OK button
authorterencehill <piuntn@gmail.com>
Mon, 23 Mar 2015 19:14:53 +0000 (20:14 +0100)
committerterencehill <piuntn@gmail.com>
Mon, 23 Mar 2015 19:14:53 +0000 (20:14 +0100)
qcsrc/menu/xonotic/dialog_welcome.qc

index 93d948c5548ec3a95c680871b2431f15e9bac226..624fc0affc2231ab80a80aa7eed20dfa0721867b 100644 (file)
@@ -108,7 +108,9 @@ void XonoticWelcomeDialog_fill(entity me)
                me.TD(me, me.rows - 4 - 1, me.columns, me.serverinfo_MOTD_ent = makeXonoticTextListBox());
                        me.serverinfo_MOTD_ent.allowColors = 1;
        me.gotoRC(me, me.rows - 1, 0);
-               me.TDempty(me, 1);
                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'));
+                       e.onClick = Dialog_Close;
+                       e.onClickEntity = me;
 }
 #endif