diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-12-01 09:29:41 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-12-01 09:29:41 +0800 |
commit | 3270da024215ea9ae0949375a479bb4f474c2858 (patch) | |
tree | e7d21eeb88e1f3a82e993dd79a91a84dfd01f17d /widgets/misc | |
parent | 0c3435a0e11086b8c9d39d87596ffe5ce7f5b133 (diff) | |
download | gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar.gz gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar.bz2 gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar.lz gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar.xz gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.tar.zst gsoc2013-evolution-3270da024215ea9ae0949375a479bb4f474c2858.zip |
Merging changes:
2001-11-30 Christopher James Lahey <clahey@ximian.com>
* configure.in: Bumped version number to 0.18.2 and GAL_REVISION
to 2.
2001-11-14 Christopher James Lahey <clahey@ximian.com>
* 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
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-gui-utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); } |