From 0c6ce063e66ae2be3d9c2f8399a84c52f83f8450 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Aug 2020 15:33:04 +0200 Subject: [PATCH] Shell: Print job status after suspending a command --- Shell/Shell.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Shell/Shell.cpp b/Shell/Shell.cpp index debfcded94..8fc3ac82d9 100644 --- a/Shell/Shell.cpp +++ b/Shell/Shell.cpp @@ -674,6 +674,9 @@ void Shell::block_on_job(RefPtr job) loop.exec(); + if (job->is_suspended()) + job->print_status(Job::PrintStatusMode::Basic); + restore_ios(); }