[android] Fixed screen dimming when pressing power button and pause the app

This commit is contained in:
Alex Zolotarev 2012-02-02 20:05:04 +03:00 committed by Alex Zolotarev
parent 623c59fd73
commit 88c9da13da

View file

@ -51,7 +51,7 @@ class DownloadChunkTask extends AsyncTask<Void, byte [], Void>
{
PowerManager pm = (PowerManager)MWMActivity.getCurrentContext().getSystemService(
android.content.Context.POWER_SERVICE);
m_wakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, TAG);
m_wakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, TAG);
m_wakeLock.acquire();
}