From 7ecc3d343fec95b7257339ba39846ff68c129ed2 Mon Sep 17 00:00:00 2001 From: Delapouite Date: Thu, 11 Jan 2018 15:26:42 +0100 Subject: [PATCH] Remove extraneous face when clearing status line --- src/shell_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell_manager.cc b/src/shell_manager.cc index ba6939d0..e2253334 100644 --- a/src/shell_manager.cc +++ b/src/shell_manager.cc @@ -288,7 +288,7 @@ std::pair 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 }; }