aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config-gui.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-18 01:53:36 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-18 01:53:36 +0800
commitdf2c6c922a5700d261717a1e11a33a04ff5f98a6 (patch)
treee91371bab7c61b17504f40540b1af2b501e2013d /mail/mail-config-gui.c
parent5ee91c7383e422383e63a4c748cad80ab5ca6533 (diff)
downloadgsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar.gz
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar.bz2
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar.lz
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar.xz
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.tar.zst
gsoc2013-evolution-df2c6c922a5700d261717a1e11a33a04ff5f98a6.zip
Move menu items around, fix some GUI bits.
svn path=/trunk/; revision=4867
Diffstat (limited to 'mail/mail-config-gui.c')
-rw-r--r--mail/mail-config-gui.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/mail/mail-config-gui.c b/mail/mail-config-gui.c
index 7e4c090971..955c457e7c 100644
--- a/mail/mail-config-gui.c
+++ b/mail/mail-config-gui.c
@@ -924,12 +924,14 @@ service_page_item_new (MailDialogServicePage *page, MailService *mcs)
gtk_table_attach (GTK_TABLE (table),
item->auth_optionmenu,
1, 2, row, row + 1,
- GTK_FILL | GTK_EXPAND,
- 0, 0, 0);
+ GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND,
+ 0, 0);
item->auth_detect = gtk_button_new_with_label (_("Detect supported types..."));
gtk_table_attach (GTK_TABLE (table), item->auth_detect,
- 2, 3, row, row + 1, 0, 0, 0, 0);
+ 2, 3, row, row + 1,
+ GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND,
+ 0, 0);
gtk_widget_set_sensitive (item->auth_detect, FALSE);
gtk_signal_connect (GTK_OBJECT (item->auth_detect),
"clicked",
@@ -1069,6 +1071,8 @@ service_page_new (const char *label_text, GSList *services)
gtk_menu_append (GTK_MENU (menu), spitem->item);
page->items = g_list_append (page->items, spitem);
+
+ gtk_widget_show (spitem->item);
}
gtk_option_menu_set_menu (GTK_OPTION_MENU (page->optionmenu), menu);
@@ -1135,7 +1139,7 @@ transport_page_new (GSList *transports)
MailDialogTransportPage *page = g_new0 (MailDialogTransportPage, 1);
GtkWidget *html;
- page->page = service_page_new ("Mail transport type:", transports);
+ page->page = service_page_new (_("Mail transport type:"), transports);
page->vbox = page->page->vbox;
html = html_new (FALSE);