Fixes a redraw issue in #144.

This commit is contained in:
Travis Goodspeed 2021-05-22 18:03:30 -04:00
parent 01cedaf568
commit 8de574422f

View File

@ -59,7 +59,7 @@ int phonebook_keypress(char ch){
pbptr=pb_nextline(pbptr); pbptr=pb_nextline(pbptr);
break; break;
default: default:
return 0; //no need to redraw return 1; //redraw
} }
return 1; //redraw return 1; //redraw
} }