mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
gdkkeyuni: Fix DEL for binary search
The list needs to be sorted in order for the binary search to work properly. https://bugzilla.gnome.org/show_bug.cgi?id=644976
This commit is contained in:
parent
9205abe374
commit
6ecfddf2e2
@ -839,7 +839,6 @@ static const struct {
|
||||
{ 0xFF0B /* Vert. Tab */, '\v' },
|
||||
{ 0xFF0D /* Return */, '\r' },
|
||||
{ 0xFF1B /* Escape */, '\033' },
|
||||
{ 0xFFFF /* Delete */, '\177' },
|
||||
|
||||
/* Numeric keypad */
|
||||
|
||||
@ -863,6 +862,8 @@ static const struct {
|
||||
{ 0xFFBD /* Equal */, '=' },
|
||||
|
||||
/* End numeric keypad */
|
||||
|
||||
{ 0xFFFF /* Delete */, '\177' }
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user