Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df69f2db authored by Vladislav Koldobskiy's avatar Vladislav Koldobskiy
Browse files

Fix Home/Menu/Back keys' unlock

Change-Id: Ibd3842b6ad8e037a2a9f8eb581e7c55900017b0f
parent 65a21f70
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -223,14 +223,17 @@ public class KeyguardViewManager {
                    if (mKeyguardView.handleBackKey()) {
                        return true;
                    }
                    break;
                case KeyEvent.KEYCODE_HOME:
                    if (mKeyguardView.handleHomeKey()) {
                        return true;
                    }
                    break;
                case KeyEvent.KEYCODE_MENU:
                    if (mKeyguardView.handleMenuKey()) {
                        return true;
                    }
                    break;
            }
        }
        return false;