Skip to content
Snippets Groups Projects
Commit 02822757 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Invert * and # key on the dialpad

parent f3b17ffa
Branches
Tags
No related merge requests found
......@@ -89,13 +89,13 @@ create_dialpad()
gtk_table_attach ( GTK_TABLE( table ), button, 2, 3, 2, 3, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
button = get_numpad_button("#", FALSE, "");
button = get_numpad_button("*", FALSE, "");
gtk_table_attach ( GTK_TABLE( table ), button, 0, 1, 3, 4, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
button = get_numpad_button("0", FALSE, "");
gtk_table_attach ( GTK_TABLE( table ), button, 1, 2, 3, 4, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
button = get_numpad_button("*", FALSE, "");
button = get_numpad_button("#", FALSE, "");
gtk_table_attach ( GTK_TABLE( table ), button, 2, 3, 3, 4, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
return table;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment