1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:35:06 +00:00

Shell: Print job status after suspending a command

This commit is contained in:
Andreas Kling 2020-08-06 15:33:04 +02:00
parent 22dd5a7021
commit 0c6ce063e6

View file

@ -674,6 +674,9 @@ void Shell::block_on_job(RefPtr<Job> job)
loop.exec();
if (job->is_suspended())
job->print_status(Job::PrintStatusMode::Basic);
restore_ios();
}