* src/gtkspell.c
authorMelvin Hadasht <melvin.hadasht@free.fr>
Fri, 19 Jul 2002 21:28:50 +0000 (21:28 +0000)
committerMelvin Hadasht <melvin.hadasht@free.fr>
Fri, 19 Jul 2002 21:28:50 +0000 (21:28 +0000)
Removed a duplicate menu entry (fast mode) introduced during
the new cache merge
Added a menu separator between 'Use alternate' and 'Fast mode'

ChangeLog.claws
configure.in
src/gtkspell.c

index eaf21ad7427be4e45ab03ffc8e8668f59a758f8c..9d5fba6b8488b21cd4c2463e6fef6bca74967e90 100644 (file)
@@ -1,3 +1,10 @@
+2002-07-19 [melvin]    0.7.8claws80
+
+       * src/gtkspell.c
+               Removed a duplicate menu entry (fast mode) introduced during
+               the new cache merge
+               Added a menu separator between 'Use alternate' and 'Fast mode'
+
 2002-07-19 [paul]      0.7.8claws79
 
        * tools/Makefile.am
index d46cb6224c83975bdf64b66fd14d9c5ec46ca8cb..cabc9d1928f782d1d6a5eee9525b1ea5f5d75fa7 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws79
+EXTRA_VERSION=claws80
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 7b9f17efbecb8724a50a4f96ce74f78a73847678..aaa226c2b42917072efe48d0e5d553c263893e73 100644 (file)
@@ -1887,18 +1887,6 @@ static void populate_submenu(GtkPspell *gtkpspell, GtkWidget *menu)
         gtk_widget_show(item);
         gtk_menu_append(GTK_MENU(menu), item);
                
-       item = gtk_check_menu_item_new_with_label(_("Fast Mode"));
-       if (ispell || gtkpspell->gtkpspeller->sug_mode == PSPELL_FASTMODE)
-               gtk_widget_set_sensitive(GTK_WIDGET(item),FALSE);
-       if (!ispell && gtkpspell->gtkpspeller->sug_mode == PSPELL_FASTMODE)
-               gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item),TRUE);
-       else
-               gtk_signal_connect(GTK_OBJECT(item), "activate",
-                                  GTK_SIGNAL_FUNC(set_sug_mode_cb),
-                                  gtkpspell);
-       gtk_widget_show(item);
-       gtk_menu_append(GTK_MENU(menu), item);
-
        if (gtkpspell->use_alternate && gtkpspell->alternate_speller) {
                dictname = g_strdup_printf(_("Use alternate (%s)"), 
                                gtkpspell->alternate_speller->dictionary->dictname);
@@ -1909,6 +1897,9 @@ static void populate_submenu(GtkPspell *gtkpspell, GtkWidget *menu)
                                   gtkpspell);
                gtk_widget_show(item);
                gtk_menu_append(GTK_MENU(menu), item);
+               item = gtk_menu_item_new();
+               gtk_widget_show(item);
+               gtk_menu_append(GTK_MENU(menu), item);
        }
 
        item = gtk_check_menu_item_new_with_label(_("Fast Mode"));