aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/contact-editor/e-contact-editor.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-08 04:39:03 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-08 04:39:03 +0800
commit22381481e98896c8f207d9442aee1c2577f6d76d (patch)
tree63ca467235307b4ea51e3f41ef548963863181c1 /addressbook/contact-editor/e-contact-editor.c
parent35bb85fdf67039394e1dc20ac7d09fdaaa805c54 (diff)
downloadgsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.gz
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.bz2
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.lz
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.xz
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.zst
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.zip
Fixed the tab order to not repeat the web page address field.
2000-08-07 Christopher James Lahey <clahey@helixcode.com> * contact-editor/contact-editor.glade, contact-editor/e-contact-editor.c: Fixed the tab order to not repeat the web page address field. svn path=/trunk/; revision=4583
Diffstat (limited to 'addressbook/contact-editor/e-contact-editor.c')
-rw-r--r--addressbook/contact-editor/e-contact-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c
index 235c8ea4b1..165d00e3f1 100644
--- a/addressbook/contact-editor/e-contact-editor.c
+++ b/addressbook/contact-editor/e-contact-editor.c
@@ -933,7 +933,7 @@ setup_tab_order(GladeXML *gui)
list = add_to_tab_order(list, gui, "entry-email1");
list = add_to_tab_order(list, gui, "entry-web");
list = add_to_tab_order(list, gui, "text-address");
- list = add_to_tab_order(list, gui, "button-contacts");
+ list = add_to_tab_order(list, gui, "alignment-contacts");
list = g_list_reverse(list);
e_container_change_tab_order(GTK_CONTAINER(container), list);
}