diff options
author | Elliott Hughes <enh@google.com> | 2015-04-10 22:26:52 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-10 22:26:53 +0200 |
commit | 5d1630a926a02ca13a66eb1e385eabba16b04cfc (patch) | |
tree | 7e8d33676678e2240d5368fca8465712b24285cd /screen_ui.cpp | |
parent | Merge "Move "Mount /system" to the main menu." (diff) | |
parent | Fix ScreenRecoveryUI to handle devices without power/up/down. (diff) | |
download | android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar.gz android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar.bz2 android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar.lz android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar.xz android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.tar.zst android_bootable_recovery-5d1630a926a02ca13a66eb1e385eabba16b04cfc.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index 6d8df68b3..b62417f5f 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -185,6 +185,9 @@ void ScreenRecoveryUI::SetColor(UIElement e) { case MENU_SEL_BG: gr_color(0, 106, 157, 255); break; + case MENU_SEL_BG_ACTIVE: + gr_color(0, 156, 100, 255); + break; case MENU_SEL_FG: gr_color(255, 255, 255, 255); break; @@ -220,7 +223,7 @@ void ScreenRecoveryUI::draw_screen_locked() { if (i == menu_top + menu_sel) { // draw the highlight bar - SetColor(MENU_SEL_BG); + SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG); gr_fill(0, y-2, gr_fb_width(), y+char_height+2); // white text of selected item SetColor(MENU_SEL_FG); @@ -638,3 +641,9 @@ void ScreenRecoveryUI::Redraw() { update_screen_locked(); pthread_mutex_unlock(&updateMutex); } + +void ScreenRecoveryUI::KeyLongPress(int) { + // Redraw so that if we're in the menu, the highlight + // will change color to indicate a successful long press. + Redraw(); +} |