X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=keys.c;h=0762490e5fee4b634e68cb02191a0bf13b1f9660;hb=49e68945aaf75a9ead362b814b6452783c414a3e;hp=a3a6d9268601045bd102472293893308021bc966;hpb=26a665ff43052862131df3c63785f91861989fc8;p=xonotic%2Fdarkplaces.git diff --git a/keys.c b/keys.c index a3a6d926..0762490e 100644 --- a/keys.c +++ b/keys.c @@ -1265,7 +1265,7 @@ static void Key_Console(cmd_state_t *cmd, int key, int unicode) if (keydown[K_CTRL]) { // text zoom in - if ((key == '+' || key == K_KP_PLUS) && KM_CTRL) + if ((key == '=' || key == '+' || key == K_KP_PLUS) && KM_CTRL) { if (con_textsize.integer < 128) Cvar_SetValueQuick(&con_textsize, con_textsize.integer + 1);