am f5176922: Use INVISIBLE instead of GONE to hide KG transport buttons

* commit 'f51769221c6defd75cd412964715c0a181e31722':
  Use INVISIBLE instead of GONE to hide KG transport buttons
This commit is contained in:
Adam Powell
2013-10-13 11:12:03 -07:00
committed by Android Git Automerger

View File

@ -511,7 +511,7 @@ public class KeyguardTransportControlView extends FrameLayout {
if ((flags & flag) != 0) {
view.setVisibility(View.VISIBLE);
} else {
view.setVisibility(View.GONE);
view.setVisibility(View.INVISIBLE);
}
}