Android: When the backlight goes off, the RockboxFramebuffer/View isn't made invisible. Force that in order to disable screen updates while backlight is off.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28569 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-11-12 22:09:27 +00:00
parent f7c83ff969
commit efe41e91c4

View file

@ -132,7 +132,10 @@ public class RockboxActivity extends Activity
{
super.onPause();
if (rbservice != null)
{
rbservice.set_activity(null);
rbservice.get_fb().dispatchWindowVisibilityChanged(View.INVISIBLE);
}
}
@Override