From 3270da024215ea9ae0949375a479bb4f474c2858 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sat, 1 Dec 2001 01:29:41 +0000 Subject: Merging changes: 2001-11-30 Christopher James Lahey * configure.in: Bumped version number to 0.18.2 and GAL_REVISION to 2. 2001-11-14 Christopher James Lahey * gal/widgets/e-gui-utils.c (e_container_change_tab_order_callback): Don't do anything if focus_child is NULL. This makes tab when cycling around tab order not skip to the beginning of this tab order group. svn path=/trunk/; revision=14836 --- widgets/misc/e-gui-utils.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'widgets') diff --git a/widgets/misc/e-gui-utils.c b/widgets/misc/e-gui-utils.c index 6fbcd9532f..122d0a86d9 100644 --- a/widgets/misc/e-gui-utils.c +++ b/widgets/misc/e-gui-utils.c @@ -138,6 +138,9 @@ e_container_change_tab_order_callback(GtkContainer *container, focus_child = container->focus_child; + if (focus_child == NULL) + return FALSE; + if (direction == GTK_DIR_TAB_BACKWARD) { children = g_list_last(children); } -- cgit v1.2.3