diff options
| author | Maxime Coste <mawww@kakoune.org> | 2018-03-30 09:58:18 +1100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2018-03-30 09:58:18 +1100 |
| commit | 0baf562c93670d90369ef99828bccc94a9d92520 (patch) | |
| tree | 6cd4e9691840748170775fcd14d87a1e45ce4469 /src/context.cc | |
| parent | 510be03910081f320fae600629f23591f4fc207c (diff) | |
Support full redraws during shell execution and handle resize there
Fixes #1973
Diffstat (limited to 'src/context.cc')
| -rw-r--r-- | src/context.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context.cc b/src/context.cc index da23aac1..ece4a2f4 100644 --- a/src/context.cc +++ b/src/context.cc @@ -70,10 +70,10 @@ void Context::set_window(Window& window) m_window.reset(&window); } -void Context::print_status(DisplayLine status, bool immediate) const +void Context::print_status(DisplayLine status) const { if (has_client()) - client().print_status(std::move(status), immediate); + client().print_status(std::move(status)); } void JumpList::push(SelectionList jump) |
