projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf5792d
)
kconfig: gconf: replace GDK_space with GDK_KEY_space
author
Masahiro Yamada
<masahiroy@kernel.org>
Tue, 24 Jun 2025 15:05:42 +0000
(
00:05
+0900)
committer
Masahiro Yamada
<masahiroy@kernel.org>
Wed, 2 Jul 2025 02:11:52 +0000
(11:11 +0900)
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>
scripts/kconfig/gconf.c
patch
|
blob
|
history
diff --git
a/scripts/kconfig/gconf.c
b/scripts/kconfig/gconf.c
index
6afdba8
..
b24d029
100644
(file)
--- a/
scripts/kconfig/gconf.c
+++ b/
scripts/kconfig/gconf.c
@@
-841,7
+841,7
@@
static gboolean on_treeview2_key_press_event(GtkWidget *widget,
if (path == NULL)
return FALSE;
- if (event->keyval == GDK_space) {
+ if (event->keyval == GDK_
KEY_
space) {
if (gtk_tree_view_row_expanded(view, path))
gtk_tree_view_collapse_row(view, path);
else