2003-05-07  Not Zed  <NotZed@Ximian.com>

        ** See bug #42456

        * mail-composer-prefs.c (spell_language_button_press): set the
        enable/disable button to the right text when we toggle a column.
        Added a fixme about the weird code in the whole routine.

svn path=/trunk/; revision=21127
This commit is contained in:
Not Zed
2003-05-08 02:43:10 +00:00
committed by Michael Zucci
parent 614aa5e4a5
commit 7c5e55ba41
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2003-05-07 Not Zed <NotZed@Ximian.com>
** See bug #42456
* mail-composer-prefs.c (spell_language_button_press): set the
enable/disable button to the right text when we toggle a column.
Added a fixme about the weird code in the whole routine.
2003-05-07 Jeremy Katz <katzj@redhat.com>
* evolution-mail.schemas

View File

@ -703,6 +703,9 @@ spell_language_button_press (GtkTreeView *tv, GdkEventButton *event, MailCompose
GtkTreeViewColumn *column = NULL;
gtk_tree_view_get_path_at_pos (tv, event->x, event->y, &path, &column, NULL, NULL);
/* FIXME: This routine should just be a "toggled" event handler on the checkbox cell renderer which
has "activatable" set. */
if (path != NULL && column != NULL && !strcmp (gtk_tree_view_column_get_title (column), _("Enabled"))) {
GtkTreeIter iter;
GtkTreeModel *model;
@ -712,6 +715,7 @@ spell_language_button_press (GtkTreeView *tv, GdkEventButton *event, MailCompose
gtk_tree_model_get_iter (model, &iter, path);
gtk_tree_model_get (model, &iter, 0, &enabled, -1);
gtk_list_store_set ((GtkListStore *) model, &iter, 0, !enabled, -1);
gtk_button_set_label ((GtkButton *) prefs->spell_able_button, enabled ? _("Enable") : _("Disable"));
spell_changed (prefs);
}