commit | 48b5b0737c127a049bf16f9c69926c4da8668112 | [log] [tgz] |
---|---|---|
author | Doug Zongker <dougz@android.com> | Wed Jan 18 13:46:26 2012 -0800 |
committer | Doug Zongker <dougz@android.com> | Wed Jan 18 15:15:39 2012 -0800 |
tree | 92e4aeda2e0db36e09be25eef8d239983411309f | |
parent | 6639248d02ce544538eea83488c1ed4a3b46a7fc [diff] [blame] |
allow recovery UI to ignore certain keypresses Change-Id: Id182bb95ffcc475c5acabb29b413e422302ae7f2
diff --git a/ui.cpp b/ui.cpp index fd370a7..bd0fcae 100644 --- a/ui.cpp +++ b/ui.cpp
@@ -123,6 +123,9 @@ if (register_key) { switch (CheckKey(key_code)) { + case RecoveryUI::IGNORE: + break; + case RecoveryUI::TOGGLE: ShowText(!IsTextVisible()); break;