Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: gconf: replace GDK_space with GDK_KEY_space

In GTK3, keysyms changed to have a KEY_ prefix.

[1]: https://gitlab.gnome.org/GNOME/gtk/-/blob/2.24.33/gdk/gdkkeysyms-compat.h#L24

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+1 -1
+1 -1
scripts/kconfig/gconf.c
··· 841 841 if (path == NULL) 842 842 return FALSE; 843 843 844 - if (event->keyval == GDK_space) { 844 + if (event->keyval == GDK_KEY_space) { 845 845 if (gtk_tree_view_row_expanded(view, path)) 846 846 gtk_tree_view_collapse_row(view, path); 847 847 else