From: Adam Williamson Date: Wed, 2 Nov 2022 00:26:29 +0000 (-0700) Subject: focus: fall back to old behaviour if we didn't focus anything X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~9^2~102^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e07f8ef50657dab0d5184d4c6927acc0683bc07d;p=gtk4.git focus: fall back to old behaviour if we didn't focus anything 8455b9ac74 seems to have introduced a problem where we can wind up focusing no widget at all if the `while (parent)` loop doesn't find a widget it can successfully move the focus to. This 'fixes' that by falling back to doing the previous thing if we make it all the way through that loop without moving the focus. Thanks to @coreyberla for a hint to improve the implementation. Signed-off-by: Adam Williamson --- diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index a7cbde18bc..21dfb49880 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -4703,6 +4703,9 @@ maybe_unset_focus_and_default (GtkWindow *window) parent = _gtk_widget_get_parent (parent); } + if (!parent) + gtk_widget_child_focus (GTK_WIDGET (window), GTK_DIR_TAB_FORWARD); + priv->move_focus = FALSE; g_clear_object (&priv->move_focus_widget); }