Merge pull request #955 from Zahnstocher/noScreenOff-patch
Only turn off the screen if map is shown (wake on voice)
This commit is contained in:
commit
d52f7f70f2
1 changed files with 1 additions and 1 deletions
|
@ -839,7 +839,7 @@ public class MapActivity extends AccessibleActivity implements
|
|||
|
||||
if (mDevicePolicyManager != null && mDeviceAdmin != null) {
|
||||
final Integer screenPowerSave = settings.WAKE_ON_VOICE_INT.get();
|
||||
if (screenPowerSave > 0) {
|
||||
if (screenPowerSave > 0 && settings.MAP_ACTIVITY_ENABLED.get()) {
|
||||
if (mDevicePolicyManager.isAdminActive(mDeviceAdmin)) {
|
||||
try {
|
||||
mDevicePolicyManager.lockNow();
|
||||
|
|
Loading…
Reference in a new issue