← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~ken-vandine/indicator-me/let_there_be_online into lp:indicator-me

 

Ken VanDine has proposed merging lp:~ken-vandine/indicator-me/let_there_be_online into lp:indicator-me.

Requested reviews:
  Ted Gould (ted)
  Indicator Applet Developers (indicator-applet-developers)
Related bugs:
  #550824 Once status is set to offline the me menu becomes disabled so can't be used to go online
  https://bugs.launchpad.net/bugs/550824

For more details, see:
https://code.launchpad.net/~ken-vandine/indicator-me/let_there_be_online/+merge/51965

Don't disable the status menus for offline, only for disconnected. (LP: #550824)

-- 
https://code.launchpad.net/~ken-vandine/indicator-me/let_there_be_online/+merge/51965
Your team ayatana-commits is subscribed to branch lp:indicator-me.
=== modified file 'src/me-service.c'
--- src/me-service.c	2011-02-01 14:06:37 +0000
+++ src/me-service.c	2011-03-02 21:23:03 +0000
@@ -106,7 +106,7 @@
 		StatusProviderStatus localstatus = status_provider_get_status(status_providers[i]);
     g_debug ("provider[%d]: %s", i, status_strings[localstatus]);
 
-    if (localstatus >= STATUS_PROVIDER_STATUS_OFFLINE)
+    if (localstatus > STATUS_PROVIDER_STATUS_OFFLINE)
       /* offline and disconnected is similar for some providers
          so it's not meaningful to determine the 'indeterminate' status
       */


Follow ups