Skip to content
Snippets Groups Projects
Commit 28816799 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

Make sure every keyboard key's are included (num pad)

parent 77c89da1
No related branches found
No related tags found
No related merge requests found
......@@ -498,7 +498,7 @@ process_dialing(call_t * c, guint keyval, gchar * key)
break;
default:
// if (keyval < 255 || (keyval >65453 && keyval < 65466))
if (keyval < 127 || (keyval > 65455 && keyval < 65466))
if (keyval < 127 || (keyval > 65400 && keyval < 65466))
{
if(c->state != CALL_STATE_TRANSFERT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment