diff options
author | Vibha Yadav <yvibha@novell.com> | 2010-05-21 13:40:33 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-05-21 13:40:33 +0800 |
commit | 22b33668db988f628e411ef67ecc10520c9f20d3 (patch) | |
tree | ac2275821eeabb845f667740d3e0100ac44f7f28 /plugins/groupwise-features | |
parent | ca4937f8f76ed57b3ab7a00b3de8a721321f4ba6 (diff) | |
download | gsoc2013-evolution-22b33668db988f628e411ef67ecc10520c9f20d3.tar.gz gsoc2013-evolution-22b33668db988f628e411ef67ecc10520c9f20d3.tar.zst gsoc2013-evolution-22b33668db988f628e411ef67ecc10520c9f20d3.zip |
Bug #531013 - Proxy login window is not in focus.
Grab focus for the Proxy Login window.
Diffstat (limited to 'plugins/groupwise-features')
-rw-r--r-- | plugins/groupwise-features/proxy-login.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/groupwise-features/proxy-login.c b/plugins/groupwise-features/proxy-login.c index 23a5339c62..6fd97d99aa 100644 --- a/plugins/groupwise-features/proxy-login.c +++ b/plugins/groupwise-features/proxy-login.c @@ -484,6 +484,7 @@ gw_proxy_login_cb (GtkAction *action, EShellView *shell_view) GtkTreeSelection *selection; GtkTreeModel *model = NULL; GtkTreeIter iter; + GtkWidget *tbox_account_name; gboolean is_store = FALSE; gchar *uri = NULL; proxyLoginPrivate *priv; @@ -526,6 +527,8 @@ gw_proxy_login_cb (GtkAction *action, EShellView *shell_view) ); proxy_login_setup_tree_view (); proxy_login_update_tree (); + tbox_account_name = e_builder_get_widget (priv->builder, "account_name"); + gtk_widget_grab_focus (tbox_account_name); g_signal_connect (GTK_DIALOG (priv->main), "response", G_CALLBACK(proxy_login_cb), e_shell_view_get_shell_window (shell_view)); gtk_widget_show (GTK_WIDGET (priv->main)); |