diff options
-rw-r--r-- | recovery.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/recovery.cpp b/recovery.cpp index 41585d04..afeee7ce 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -933,12 +933,10 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri status = ApplyFromAdb(device, true /* rescue_mode */, &next_action); ui->Print("\nInstall from ADB complete (status: %d).\n", status); } else if (!just_exit) { - // If this is an eng or userdebug build, automatically turn on the text display if no command - // is specified. Note that this should be called before setting the background to avoid + // Always show menu if no command is specified. + // Note that this should be called before setting the background to avoid // flickering the background image. - if (IsRoDebuggable()) { - ui->ShowText(true); - } + ui->ShowText(true); status = INSTALL_NONE; // No command specified ui->SetBackground(RecoveryUI::NO_COMMAND); } |