From 70a0118d66e981986d310761e21b299aa8343b7a Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Sat, 10 Jan 2004 10:16:11 +0000 Subject: [PATCH] minor gui fixes --- ChangeLog.claws | 7 +++++++ configure.ac | 2 +- src/main.c | 4 ++-- src/plugins/clamav/clamav_plugin_gtk.c | 4 ++-- src/prefs_ext_prog.c | 3 ++- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 439435d98..e946de6af 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -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 diff --git a/configure.ac b/configure.ac index 1915de654..be2949862 100644 --- a/configure.ac +++ b/configure.ac @@ -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 diff --git a/src/main.c b/src/main.c index 9f0a75c0f..a09b6a5db 100644 --- a/src/main.c +++ b/src/main.c @@ -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(); diff --git a/src/plugins/clamav/clamav_plugin_gtk.c b/src/plugins/clamav/clamav_plugin_gtk.c index 9eed583d5..511a511a3 100644 --- a/src/plugins/clamav/clamav_plugin_gtk.c +++ b/src/plugins/clamav/clamav_plugin_gtk.c @@ -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")); diff --git a/src/prefs_ext_prog.c b/src/prefs_ext_prog.c index 3276b2005..d96e2eee4 100644 --- a/src/prefs_ext_prog.c +++ b/src/prefs_ext_prog.c @@ -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", -- 2.25.1