From: Tristan Chabredier Date: Sun, 10 Jun 2007 15:29:52 +0000 (+0000) Subject: 2007-06-10 [wwp] 2.9.2cvs51 X-Git-Tag: rel_2_10_0~30 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=60abfc9b88b00df87881e45111dec4c86c0c6f37 2007-06-10 [wwp] 2.9.2cvs51 * src/gtk/pluginwindow.c Fix button bar in plugin window, was centered and not behaving like other dialogs w/ such button bar. --- diff --git a/ChangeLog b/ChangeLog index 2b71ee89f..2660274ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-06-10 [wwp] 2.9.2cvs51 + + * src/gtk/pluginwindow.c + Fix button bar in plugin window, was centered and not + behaving like other dialogs w/ such button bar. + 2007-06-08 [wwp] 2.9.2cvs50 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index 1473dc143..44fd52f31 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -2626,3 +2626,4 @@ ( cvs diff -u -r 1.13.2.32 -r 1.13.2.33 src/common/socket.c; ) > 2.9.2cvs48.patchset ( cvs diff -u -r 1.105.2.101 -r 1.105.2.102 src/prefs_account.c; cvs diff -u -r 1.12.2.35 -r 1.12.2.36 src/gtk/prefswindow.c; cvs diff -u -r 1.7.2.9 -r 1.7.2.10 src/gtk/prefswindow.h; ) > 2.9.2cvs49.patchset ( cvs diff -u -r 1.382.2.388 -r 1.382.2.389 src/compose.c; cvs diff -u -r 1.50.2.36 -r 1.50.2.37 src/compose.h; cvs diff -u -r 1.115.2.153 -r 1.115.2.154 src/main.c; cvs diff -u -r 1.274.2.189 -r 1.274.2.190 src/mainwindow.c; cvs diff -u -r 1.39.2.36 -r 1.39.2.37 src/mainwindow.h; ) > 2.9.2cvs50.patchset +( cvs diff -u -r 1.5.2.45 -r 1.5.2.46 src/gtk/pluginwindow.c; ) > 2.9.2cvs51.patchset diff --git a/configure.ac b/configure.ac index d75166e3b..cd84695eb 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=2 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=50 +EXTRA_VERSION=51 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/gtk/pluginwindow.c b/src/gtk/pluginwindow.c index d222c9855..58810a732 100644 --- a/src/gtk/pluginwindow.c +++ b/src/gtk/pluginwindow.c @@ -275,7 +275,7 @@ void pluginwindow_create() GtkWidget *label13; GtkWidget *scrolledwindow3; GtkWidget *plugin_desc; - GtkWidget *hbuttonbox1, *hbox3; + GtkWidget *hbuttonbox1; GtkWidget *help_btn; GtkWidget *load_btn; GtkWidget *unload_btn; @@ -353,17 +353,13 @@ void pluginwindow_create() gtk_widget_show(get_more_btn); gtk_box_pack_start(GTK_BOX(vbox1), get_more_btn, FALSE, FALSE, 0); - hbox3 = gtk_hbox_new(TRUE, 0); - gtk_widget_show(hbox3); - gtk_box_pack_start(GTK_BOX(vbox1), hbox3, FALSE, FALSE, 0); - gtkut_stock_button_set_create_with_help(&hbuttonbox1, &help_btn, &load_btn, _("Load Plugin..."), &unload_btn, _("Unload Plugin"), &close_btn, GTK_STOCK_CLOSE); gtk_box_set_spacing(GTK_BOX(hbuttonbox1), 6); gtk_widget_show(hbuttonbox1); - gtk_box_pack_end(GTK_BOX(hbox3), hbuttonbox1, FALSE, FALSE, 0); + gtk_box_pack_end(GTK_BOX(vbox1), hbuttonbox1, FALSE, FALSE, 0); gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(plugin_desc), GTK_WRAP_WORD); gtk_widget_set_sensitive(GTK_WIDGET(unload_btn), FALSE);