summaryrefslogtreecommitdiff
path: root/src/client_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/client_manager.cc')
-rw-r--r--src/client_manager.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client_manager.cc b/src/client_manager.cc
index 0f601fc1..53caeea0 100644
--- a/src/client_manager.cc
+++ b/src/client_manager.cc
@@ -152,7 +152,6 @@ WindowAndSelections ClientManager::get_free_window(Buffer& buffer)
if (it == m_free_windows.rend())
return { std::make_unique<Window>(buffer), { buffer, Selection{} } };
- it->window->force_redraw();
WindowAndSelections res = std::move(*it);
m_free_windows.erase(it.base()-1);
res.selections.update();