diff options
author | TingPing <tingping@tingping.se> | 2012-12-02 23:16:07 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2012-12-02 23:16:07 -0500 |
commit | f06fd74d25b3a6aac7a5427b9acb545588edd93e (patch) | |
tree | 04c4312db3e9eb7a8c461ceeac424838b6d3dddb /src/fe-gtk/plugingui.c | |
parent | e3bdd00ff345de62a3612555fd59327e51ae33b7 (diff) |
remove close button for consistancy
Diffstat (limited to 'src/fe-gtk/plugingui.c')
-rw-r--r-- | src/fe-gtk/plugingui.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/fe-gtk/plugingui.c b/src/fe-gtk/plugingui.c index 45ef761b..eed6ac10 100644 --- a/src/fe-gtk/plugingui.c +++ b/src/fe-gtk/plugingui.c @@ -84,12 +84,6 @@ plugingui_treeview_new (GtkWidget *box) } static void -plugingui_close_button (GtkWidget * wid, gpointer a) -{ - gtk_widget_destroy (plugin_window); -} - -static void plugingui_close (GtkWidget * wid, gpointer a) { plugin_window = NULL; @@ -241,11 +235,6 @@ plugingui_open (void) gtkutil_button (hbox, GTK_STOCK_DELETE, NULL, plugingui_unload, NULL, _("_UnLoad")); - if (!prefs.hex_gui_tab_utils) - gtkutil_button (hbox, - GTK_STOCK_CLOSE, NULL, plugingui_close_button, - NULL, _("_Close")); - fe_pluginlist_update (); gtk_widget_show_all (plugin_window); |