diff options
| author | Delapouite <delapouite@gmail.com> | 2018-01-11 15:26:42 +0100 |
|---|---|---|
| committer | Delapouite <delapouite@gmail.com> | 2018-01-11 15:26:42 +0100 |
| commit | 7ecc3d343fec95b7257339ba39846ff68c129ed2 (patch) | |
| tree | 8b3eff14e4d365b00fc52e53e92b8fb9fa698ad8 | |
| parent | c308cddcd8d0fb271eee3d723986da1e18c8edf4 (diff) | |
Remove extraneous face when clearing status line
| -rw-r--r-- | src/shell_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<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 }; } |
