bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

other problems


From: Marco Stolle
Subject: other problems
Date: Wed, 3 Oct 2001 10:24:05 -0400

in addition to my previous mail:

i also notice the same problem when i use the left arrow
when i push 8 times to the left 7 times he moves to the left and the 8 time 
it doesnt,

my code for the left and right arrow:

                case KEY_LEFT:
                                form_driver(my_form, REQ_LEFT_CHAR);
                                break;

                        case KEY_RIGHT:
                                form_driver(my_form, REQ_RIGHT_CHAR);
                                break;

my code for backspace and delete key:

                       case KEY_BACKSPACE:
                       form_driver(my_form,REQ_LEFT_CHAR);
                       form_driver(my_form,REQ_DEL_CHAR);
                       break;

                       case KEY_DC:
                       form_driver(my_form,REQ_DEL_CHAR);
                       break;

is this correct?


again thanx                     Marco                       



reply via email to

[Prev in Thread] Current Thread [Next in Thread]