Explorar el Código

rub out text when no item matches it

master
phillbush hace 4 años
padre
commit
7bdb3b0bf8
Se han modificado 1 ficheros con 6 adiciones y 5 borrados
  1. +6
    -5
      xmenu.c

+ 6
- 5
xmenu.c Ver fichero

@@ -1289,12 +1289,13 @@ enteritem:
} else {
append:
if (append(text, buf, sizeof text, len)) {
currmenu->selected = matchitem(currmenu, text);
action = ACTION_DRAW;
} else {
select = NULL;
action = ACTION_SELECT | ACTION_DRAW;
if ((currmenu->selected = matchitem(currmenu, text))) {
action = ACTION_DRAW;
break;
}
}
select = NULL;
action = ACTION_SELECT | ACTION_DRAW;
break;
}
select = item;


Cargando…
Cancelar
Guardar