[gnome-packagekit] Reget the list of updates in the update viewer if we installed infrastructure packages. Fixes rh#589
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-packagekit] Reget the list of updates in the update viewer if we installed infrastructure packages. Fixes rh#589
- Date: Tue, 11 May 2010 18:57:30 +0000 (UTC)
commit f806edeb3049056f021fb746146fddea2a71dd31
Author: Richard Hughes <richard hughsie com>
Date: Tue May 11 14:30:36 2010 +0100
Reget the list of updates in the update viewer if we installed infrastructure packages. Fixes rh#589045
Note: We only get the new list if there is no pending restart of
the infrastructure packages.
src/gpk-update-viewer.c | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
---
diff --git a/src/gpk-update-viewer.c b/src/gpk-update-viewer.c
index 3f526c5..49ab574 100644
--- a/src/gpk-update-viewer.c
+++ b/src/gpk-update-viewer.c
@@ -55,6 +55,7 @@
struct GpkUpdateViewerPrivate
{
gboolean ignore_updates_changed;
+ gboolean other_updates_held_back;
gchar *package_id_last;
guint auto_shutdown_id;
guint size_total;
@@ -531,6 +532,11 @@ gpk_update_viewer_update_packages_cb (PkTask *task, GAsyncResult *res, GpkUpdate
gpk_update_viewer_check_restart (update_viewer);
gpk_update_viewer_quit (update_viewer);
goto out;
+ } else {
+ /* we want the UI to update with the new list */
+ if (priv->other_updates_held_back)
+ gpk_update_viewer_get_new_update_array (update_viewer);
+ goto out;
}
/* hide close button */
@@ -2599,14 +2605,18 @@ gpk_update_viewer_get_updates_cb (PkClient *client, GAsyncResult *res, GpkUpdate
}
/* do we have any important messages we need to show? */
+ priv->other_updates_held_back = FALSE;
array_messages = pk_results_get_message_array (results);
for (i=0; i<array_messages->len; i++) {
message = g_ptr_array_index (array_messages, i);
g_object_get (message,
"type", &message_type,
NULL);
- if (message_type == PK_MESSAGE_ENUM_OTHER_UPDATES_HELD_BACK)
+ if (message_type == PK_MESSAGE_ENUM_OTHER_UPDATES_HELD_BACK) {
+ priv->other_updates_held_back = TRUE;
gtk_widget_show (priv->info_updates);
+ break;
+ }
}
/* get data */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]