diff options
-rw-r--r-- | plugins/plugin-manager/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/plugin-manager/plugin-manager.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/plugin-manager/ChangeLog b/plugins/plugin-manager/ChangeLog index 40111f51cd..108affe08c 100644 --- a/plugins/plugin-manager/ChangeLog +++ b/plugins/plugin-manager/ChangeLog @@ -1,3 +1,11 @@ +2007-11-19 Sankar P <psankar@novell.com> + + ** Fix for bug #498173 + + * plugin-manager.c: (eppm_response): + e_plugin_configure should be called only + when user clicks on Configure button. + 2007-10-26 Kjartan Maraas <kmaraas@gnome.org> * plugin-manager.c: (org_gnome_plugin_manager_manage): diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c index 4352254bf7..4bd4694fa3 100644 --- a/plugins/plugin-manager/plugin-manager.c +++ b/plugins/plugin-manager/plugin-manager.c @@ -190,7 +190,7 @@ eppm_response(GtkDialog *w, int button, Manager *m) if (button == GTK_RESPONSE_CLOSE) { gtk_widget_destroy((GtkWidget*)w); dialog = NULL; - } else { + } else if (button == RESPONSE_CONFIGURE) { GtkTreeSelection *selection = NULL; GtkTreeModel *model = NULL; GtkTreeIter iter; |