2007-06-10 [wwp] 2.9.2cvs51
authorTristan Chabredier <wwp@claws-mail.org>
Sun, 10 Jun 2007 15:29:52 +0000 (15:29 +0000)
committerTristan Chabredier <wwp@claws-mail.org>
Sun, 10 Jun 2007 15:29:52 +0000 (15:29 +0000)
* src/gtk/pluginwindow.c
Fix button bar in plugin window, was centered and not
behaving like other dialogs w/ such button bar.

ChangeLog
PATCHSETS
configure.ac
src/gtk/pluginwindow.c

index 2b71ee89fd0652afd5c2e44ec58f7f333bc21970..2660274ec1b76acd10b17fd437c730b75029a80c 100644 (file)
--- 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
index 1473dc143c82ff458e1bb0975833e4a9a6bf34fc..44fd52f31419f6c9723df1027a9ff6d902169bf3 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( 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
index d75166e3b3c6268002ba0d4ab6ca1ee567fa11ea..cd84695eba868db29b85f83b361dd654b9819f33 100644 (file)
@@ -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=
 
index d222c9855a17877fd9d4f0874171978cf48ff7d3..58810a73207215aafda4ff52e12f3e5e31d6fc61 100644 (file)
@@ -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);