diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/application-service-appstore.c | 9 |
2 files changed, 15 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 86ac147..275ee08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,13 @@ indicator-application (0.2.7-0ubuntu1) maverick; urgency=low -- Ted Gould <ted@ubuntu.com> Thu, 09 Sep 2010 13:00:37 -0500 +indicator-application (0.2.7-0ubuntu1~ppa2) maverick; urgency=low + + * Upstream Merge + * Update the icon if the item is visible (LP: #639643) + + -- Ted Gould <ted@ubuntu.com> Wed, 15 Sep 2010 14:35:00 -0500 + indicator-application (0.2.6-0ubuntu1) maverick; urgency=low * New upstream release. diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 7096382..46118bb 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -602,7 +602,14 @@ apply_status (Application * app) } /* Nothing needs to change, we're good */ - if (app->visible_state == goal_state) { + if (app->visible_state == goal_state /* ) { */ + && goal_state == VISIBLE_STATE_HIDDEN) { + /* TODO: Uhg, this is a little wrong in that we're going to + send an icon every time the status changes and the indicator + is visible even though it might not be updating. But, at + this point we need a small patch that is harmless. In the + future we need to track which icon is shown and remove the + duplicate message. */ return; } |