diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-19 08:24:38 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-19 08:24:38 +0800 |
commit | e54241baa88fba95c357bdde508c9c924275c3a3 (patch) | |
tree | d1e316669fc02e4e5fba470f6007b9f211ce3524 /my-evolution/e-summary-preferences.c | |
parent | c3b248ff4bca0b226f1c33896a89243fdec89def (diff) | |
download | gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.gz gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.zst gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.zip |
Select next rows
svn path=/trunk/; revision=12965
Diffstat (limited to 'my-evolution/e-summary-preferences.c')
-rw-r--r-- | my-evolution/e-summary-preferences.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 3bdb6a6911..e32507fcc5 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -822,11 +822,12 @@ rdf_remove_clicked_cb (GtkButton *button, row = GPOINTER_TO_INT (GTK_CLIST (pd->rdf->shown)->selection->data); p = gtk_clist_get_row_data (GTK_CLIST (pd->rdf->shown), row); gtk_clist_remove (GTK_CLIST (pd->rdf->shown), row); - + pd->summary->preferences->rdf_urls = g_list_remove_link (pd->summary->preferences->rdf_urls, p); g_free (p->data); g_list_free (p); + gtk_clist_select_row (GTK_CLIST (pd->rdf->shown), row, 0); gnome_property_box_changed (pd->box); } @@ -1022,6 +1023,7 @@ weather_remove_clicked_cb (GtkButton *button, g_free (p->data); g_list_free (p); + gtk_clist_select_row (GTK_CLIST (pd->weather->shown), row, 0); gnome_property_box_changed (pd->box); } |