Remove extraneous face when clearing status line

This commit is contained in:
Delapouite 2018-01-11 15:26:42 +01:00
parent c308cddcd8
commit 7ecc3d343f

View File

@ -288,7 +288,7 @@ std::pair<String, int> ShellManager::eval(
}
if (wait_notified) // clear the status line
context.print_status({ "", get_face("Information") }, true);
context.print_status({}, true);
return { std::move(stdout_contents), WIFEXITED(status) ? WEXITSTATUS(status) : -1 };
}