minor gui fixes
authorPaul Mangan <paul@claws-mail.org>
Sat, 10 Jan 2004 10:16:11 +0000 (10:16 +0000)
committerPaul Mangan <paul@claws-mail.org>
Sat, 10 Jan 2004 10:16:11 +0000 (10:16 +0000)
ChangeLog.claws
configure.ac
src/main.c
src/plugins/clamav/clamav_plugin_gtk.c
src/prefs_ext_prog.c

index 439435d98e07e0c573b1b4b2e59e443dd26eb50d..e946de6af7293534893575fdf5b1f53e129e892b 100644 (file)
@@ -1,3 +1,10 @@
+2004-01-10 [paul]      0.9.8claws26
+
+       * src/main.c
+         src/prefs_ext_prog.c
+         src/plugins/clamav/clamav_plugin_gtk.c
+               minor gui fixes
+
 2004-01-09 [christoph] 0.9.8claws25
 
        * src/Makefile.am
index 1915de654b593cb2433c807bac92a5c996288452..be2949862ade512f7e50c04bc0d89cbe8733f115 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=25
+EXTRA_VERSION=26
 if test $EXTRA_VERSION -eq 0; then
     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
 else
index 9f0a75c0f6838ef789abaeaa69fc1f67448f2240..a09b6a5dbe27d4d3394cac144ea5a23262adb1df 100644 (file)
@@ -252,9 +252,9 @@ int main(int argc, char *argv[])
        sgpgme_init();
        pgpmime_init();
 #endif
-       prefs_ext_prog_init();
        prefs_themes_init();
        prefs_fonts_init();
+       prefs_ext_prog_init();
 #ifdef USE_ASPELL
        gtkaspell_checkers_init();
        prefs_spelling_init();
@@ -426,9 +426,9 @@ static void exit_sylpheed(MainWindow *mainwin)
        pgpmime_done();
        sgpgme_done();
 #endif
-       prefs_ext_prog_done();
        prefs_themes_done();
        prefs_fonts_done();
+       prefs_ext_prog_done();
 #ifdef USE_ASPELL       
        prefs_spelling_done();
        gtkaspell_checkers_quit();
index 9eed583d5d0b9b9eff42cf33ff37acfb738fa887..511a511a3a62220310531d17d27b2e688b4acf60 100644 (file)
@@ -93,7 +93,7 @@ static void clamav_create_widget_func(PrefsPage * _page, GtkWindow *window, gpoi
        label1 = gtk_label_new(_("Enable virus scanning"));
        gtk_widget_show (label1);
        gtk_table_attach (GTK_TABLE (table), label1, 0, 1, 0, 1,
-                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
+                         (GtkAttachOptions) (GTK_FILL),
                          (GtkAttachOptions) (0), 2, 4);
        gtk_label_set_justify(GTK_LABEL(label1), GTK_JUSTIFY_LEFT);
        gtk_misc_set_alignment (GTK_MISC (label1), 0, 0.5);
@@ -101,7 +101,7 @@ static void clamav_create_widget_func(PrefsPage * _page, GtkWindow *window, gpoi
        enable_clamav = gtk_check_button_new();
        gtk_widget_show (enable_clamav);
        gtk_table_attach (GTK_TABLE (table), enable_clamav, 1, 2, 0, 1,
-                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
+                         (GtkAttachOptions) (GTK_FILL),
                          (GtkAttachOptions) (0), 0, 0);
 
        label2 = gtk_label_new(_("Scan archive contents"));
index 3276b200544dcf71f3361dcc44c6b1b1993ce80c..d96e2eee4757955cb2e16ea0cd2d7a8ea8f620d3 100644 (file)
@@ -112,7 +112,7 @@ void prefs_ext_prog_create_widget(PrefsPage *_page, GtkWindow *window,
        gtk_table_set_col_spacings(GTK_TABLE(table2), 8);
        
        gtk_table_attach(GTK_TABLE (table), table2, 0, 1, 1, 2,
-                        (GtkAttachOptions) (GTK_FILL),
+                        (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
                         (GtkAttachOptions) (0), 0, 0);
                         
        uri_label = gtk_label_new (_("Web browser"));
@@ -176,6 +176,7 @@ void prefs_ext_prog_create_widget(PrefsPage *_page, GtkWindow *window,
        gtkut_combo_set_items (GTK_COMBO (exteditor_combo),
                               "gedit %s",
                               "kedit %s",
+                              "nedit %s",
                               "mgedit --no-fork %s",
                               "emacs %s",
                               "xemacs %s",