aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-24 12:52:23 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-24 12:52:23 +0800
commit4324f34596feee175c5934bfbe8011fc1f31f7b8 (patch)
tree56e8c1a757e4ee50f9a6afa0d9588850bcb1bc14 /widgets
parent03ca12814b49f7f7999c635d7449dabce0b145b5 (diff)
downloadgsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar.gz
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar.bz2
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar.lz
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar.xz
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.tar.zst
gsoc2013-evolution-4324f34596feee175c5934bfbe8011fc1f31f7b8.zip
Fix some account UI glitches.
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/e-account-tree-view.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/widgets/misc/e-account-tree-view.c b/widgets/misc/e-account-tree-view.c
index 9f2d33a050..78f92d5f06 100644
--- a/widgets/misc/e-account-tree-view.c
+++ b/widgets/misc/e-account-tree-view.c
@@ -159,8 +159,15 @@ account_tree_view_enabled_toggled_cb (EAccountTreeView *tree_view,
gchar *path_string,
GtkCellRendererToggle *renderer)
{
+ GtkTreeSelection *selection;
+ GtkTreePath *path;
+
/* Change the selection first so we enable or disable the
* correct account. */
+ path = gtk_tree_path_new_from_string (path_string);
+ selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view));
+ gtk_tree_selection_select_path (selection, path);
+ gtk_tree_path_free (path);
if (gtk_cell_renderer_toggle_get_active (renderer))
e_account_tree_view_disable_account (tree_view);
@@ -355,6 +362,8 @@ account_tree_view_enable_account (EAccountTreeView *tree_view)
account->enabled = TRUE;
e_account_list_change (account_list, account);
+
+ e_account_list_save (account_list);
}
static void
@@ -372,6 +381,8 @@ account_tree_view_disable_account (EAccountTreeView *tree_view)
account->enabled = FALSE;
e_account_list_change (account_list, account);
+
+ e_account_list_save (account_list);
}
static void