Skip to content

Commit

Permalink
SystemUI: Fix data activity overlay not being removed when data is di…
Browse files Browse the repository at this point in the history
…sabled

If mobile data connection is disabled while there is active data
activity, the data activity overlay will not be removed and will
be stuck there. This patch fixes that.

Change-Id: I4cc1a14bb2e2d85687752657608e5989adfe9af1
  • Loading branch information
pawitp authored and knzy committed Sep 21, 2012
1 parent 00a8fc6 commit 063095e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -968,6 +968,8 @@ void refreshViews() {
combinedActivityIconId = mMobileActivityIconId;
combinedSignalIconId = mDataSignalIconId; // set by updateDataIcon()
mContentDescriptionCombinedSignal = mContentDescriptionDataType;
} else {
mMobileActivityIconId = 0;
}
}

Expand Down

0 comments on commit 063095e

Please sign in to comment.