summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-08-05 20:52:22 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-08-05 20:52:22 -0400
commitdcf37412c169d66dfda8ba8160b80ac02c3cc292 (patch)
tree6b26350250a140a1301fb478a8b266a0709d6916
parentd6c35ab02f43cb0719e70ac5c3250290d5e6e86a (diff)
downloadgtk+-dcf37412c169d66dfda8ba8160b80ac02c3cc292.tar.gz
gtk-demo: Fix keynav in the puzzle demo
Fixes: #3023
-rw-r--r--demos/gtk-demo/sliding_puzzle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/gtk-demo/sliding_puzzle.c b/demos/gtk-demo/sliding_puzzle.c
index bff400b6c4..250f5983cf 100644
--- a/demos/gtk-demo/sliding_puzzle.c
+++ b/demos/gtk-demo/sliding_puzzle.c
@@ -272,7 +272,7 @@ start_puzzle (GdkPaintable *paintable)
/* Create a new grid */
grid = gtk_grid_new ();
- gtk_widget_set_can_focus (grid, TRUE);
+ gtk_widget_set_focusable (grid, TRUE);
gtk_aspect_frame_set_child (GTK_ASPECT_FRAME (frame), grid);
aspect_ratio = gdk_paintable_get_intrinsic_aspect_ratio (paintable);
if (aspect_ratio == 0.0)
@@ -284,7 +284,7 @@ start_puzzle (GdkPaintable *paintable)
* keys to move the puzzle */
controller = gtk_shortcut_controller_new ();
gtk_shortcut_controller_set_scope (GTK_SHORTCUT_CONTROLLER (controller),
- GTK_SHORTCUT_SCOPE_GLOBAL);
+ GTK_SHORTCUT_SCOPE_LOCAL);
add_move_binding (GTK_SHORTCUT_CONTROLLER (controller),
GDK_KEY_Left, GDK_KEY_KP_Left,
-1, 0);