]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/dialog_multiplayer_media_demo_timeconfirm.qc
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_multiplayer_media_demo_timeconfirm.qc
index 55760d14ab77cdddff1f9e532ded4e6ac79a9841..ebbf21c9f64e1fa6812dd1a9dddf2abe90fe79fa 100644 (file)
@@ -10,15 +10,15 @@ void XonoticDemoTimeConfirmDialog_fill(entity me)
        entity e;
 
        me.TR(me);
-               me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Timing a demo will disconnect you from the current match.")));
+       me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Timing a demo will disconnect you from the current match.")));
        me.TR(me);
-               me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Do you really wish to disconnect now?")));
+       me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Do you really wish to disconnect now?")));
        me.TR(me);
        me.TR(me);
-               me.TD(me, 1, 1, e = makeXonoticButton(_("Yes"), '1 0 0'));
-                       e.onClick = Handle_TimeDemo_Click;
-                       e.onClickEntity = demolist;
-               me.TD(me, 1, 1, e = makeXonoticButton(_("No"), '0 1 0'));
-                       e.onClick = Dialog_Close;
-                       e.onClickEntity = me;
+       me.TD(me, 1, 1, e = makeXonoticButton(_("Yes"), '1 0 0'));
+       e.onClick = Handle_TimeDemo_Click;
+       e.onClickEntity = demolist;
+       me.TD(me, 1, 1, e = makeXonoticButton(_("No"), '0 1 0'));
+       e.onClick = Dialog_Close;
+       e.onClickEntity = me;
 }