diff options
-rw-r--r-- | recovery.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/recovery.cpp b/recovery.cpp index a73cf10..9b87cd8 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -1473,12 +1473,8 @@ main(int argc, char **argv) { status = INSTALL_NONE; // No command specified ui->SetBackground(RecoveryUI::NO_COMMAND); - // http://b/17489952 - // If this is an eng or userdebug build, automatically turn on the - // text display if no command is specified. - if (is_ro_debuggable()) { - ui->ShowText(true); - } + // Always show menu if no command is specified + ui->ShowText(true); } if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) { |