mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 01:43:01 +01:00
Update prompt.c
This commit is contained in:
parent
dfff1e3cc4
commit
79a731991f
2
prompt.c
2
prompt.c
@ -276,7 +276,7 @@ static void execute(ToxWindow* self, char* u_cmd) {
|
|||||||
static void prompt_onKey(ToxWindow* self, int key) {
|
static void prompt_onKey(ToxWindow* self, int key) {
|
||||||
// PRINTABLE characters: Add to line.
|
// PRINTABLE characters: Add to line.
|
||||||
if(isprint(key)) {
|
if(isprint(key)) {
|
||||||
if (prompt_buf_pos == 255){
|
if (prompt_buf_pos == (sizeof(prompt_buf) - 1)){
|
||||||
wprintw(self->window, "\nToo Long.\n");
|
wprintw(self->window, "\nToo Long.\n");
|
||||||
prompt_buf_pos = 0;
|
prompt_buf_pos = 0;
|
||||||
prompt_buf[0] = 0;
|
prompt_buf[0] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user